LTP(Linux Test Project)学习(三)——LTP目录介绍

仓库目录
$ tree -d -L 2
.
├── autom4te.cache
├── confI21Iza
├── doc (ltp介绍和使用说明)
│ ├── man1
│ └── man3
├── gitignore_clean
├── include (ltp执行框架头文件)
│ ├── lapi
│ ├── mk
│ └── old
├── lib (ltp执行框架代码)
│ ├── android_libpthread
│ ├── android_librt
│ ├── newlib_tests
│ └── tests
├── m4
├── pan
│ └── cgi
├── runtest (ltp执行用例列表)
├── scenario_groups
├── scripts
│ ├── lib
│ └── tests
├── testcases (ltp用例代码目录,commands表示command测试用例,kernel表示内核测试用例,lib是用例公共函数)
kernel表示内核测试用例,lib是用例公共函数)
│ ├── commands
│ ├── cve
│ ├── kdump
│ ├── kernel
│ ├── lib
│ ├── misc
│ ├── network
│ ├── open_posix_testsuite
│ └── realtime
├── testscripts (ltp的各种框架执行命令,比如里面有压力测试脚本,编译不需要,执行用例调用)
├── tools
│ ├── apicmds
│ ├── genload
│ └── pounder21
└── utils (其他内核工具)
├── benchmark
├── ffsb-6.0

编译后二进制目录
$ tree -d -L 2
.
├── bin
├── runtest
├── scenario_groups
├── share
│ └── man
├── testcases (用例可执行二进制)
│ ├── bin
│ └── data
└── testscripts
这里写图片描述

猜你喜欢

转载自blog.csdn.net/cui841923894/article/details/81463069