原创-性能测试篇-ltp测试

主要就是一个shell脚本

#!/bin/sh

########################################################
# 测试标题:整机拷贝48小时 ltp测试  标识:111 
# 测试目的:测试整机工作的健壮性
#          (对整机进行48小时拷机)
#
# 预期结果:完成测试没挂掉就行,在resultlog.xx文件显示相关数据
#
########################################################
# 使用Ltp工具进行测试
#
# 
#######################################################

#测试标题
test_title="测试标题:整机拷贝48小时测试 使用ltp工具,标识:111"
#预期结果
expect_result="预期结果:完成测试主机没死掉,在resultlog.xxx文件显示相关数据"
#结果保存路径
result_path=./
#测试的时间
test_time=$1
#打印日期时间
date >> ${result_path}test_ltp_result.txt
#空三行
echo -e "\n" >> ${result_path}test_ltp_result.txt
#打印测试标题
echo ${test_title} >> ${result_path}test_ltp_result.txt
#打印预期结果
echo ${expect_result} >> ${result_path}test_ltp_result.txt

#空一行
echo -e >> ${result_path}test_ltp_result.txt

#配置平台 编译环境
./configure --prefix=/opt/ltp --build=mips64el-redhat-linux
#执行make 命令 采用4个线程
make -j4
#安装文件 
echo "正在安装"
make install
echo "安装完毕"

#执行测试指令 $1代表测试的时间 主机 48小时 服务器 168小时
/opt/ltp/testscripts/ltpstress.sh -n -t $1 -p


echo "测试完毕"

 

上一篇:ltp-ddt nand_ecc_tests


下一篇:ltp循环跑