diff options
| author | Petr Vorel <pvorel@suse.cz> | 2017-02-16 23:37:19 +0100 |
|---|---|---|
| committer | Alexey Kodanev <alexey.kodanev@oracle.com> | 2017-02-20 18:32:19 +0300 |
| commit | e41cd7e782c35c2368abd4f719aa4ea7211279ca (patch) | |
| tree | 440846a7438708c482c60622a2699c37882013d5 /testscripts | |
| parent | 953331054b6a2c900ed17561edf0413048fb5412 (diff) | |
| download | platform_external_ltp-e41cd7e782c35c2368abd4f719aa4ea7211279ca.tar.gz platform_external_ltp-e41cd7e782c35c2368abd4f719aa4ea7211279ca.tar.bz2 platform_external_ltp-e41cd7e782c35c2368abd4f719aa4ea7211279ca.zip | |
network: Add TI-RPC and TS-RPC tests into network.sh
Signed-off-by: Petr Vorel <pvorel@suse.cz>
Diffstat (limited to 'testscripts')
| -rwxr-xr-x | testscripts/network.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testscripts/network.sh b/testscripts/network.sh index 2d2c6762c..9b88a1206 100755 --- a/testscripts/network.sh +++ b/testscripts/network.sh @@ -24,6 +24,8 @@ usage() echo " -r RPC tests" echo " -s SCTP tests" echo " -t TCP/IP command tests" + echo " -c TI-RPC tests" + echo " -d TS-RPC tests" echo " -a Application tests (HTTP, SSH, DNS)" echo " -e Interface stress tests" echo " -b Stress tests with malformed ICMP packets" @@ -40,7 +42,7 @@ usage() TEST_CASES= -while getopts 6mnrstaebiTURMFf:Vvh OPTION +while getopts 6mnrstaebcdiTURMFf:Vvh OPTION do case $OPTION in 6) TEST_CASES="$TEST_CASES net.ipv6 net.ipv6_lib";; @@ -49,6 +51,8 @@ do r) TEST_CASES="$TEST_CASES net.rpc" ;; s) TEST_CASES="$TEST_CASES net.sctp" ;; t) TEST_CASES="$TEST_CASES net.tcp_cmds" ;; + c) TEST_CASES="$TEST_CASES net.rpc_tests";; + d) TEST_CASES="$TEST_CASES net.tirpc_tests";; a) TEST_CASES="$TEST_CASES net_stress.appl";; e) TEST_CASES="$TEST_CASES net_stress.interface";; b) TEST_CASES="$TEST_CASES net_stress.broken_ip";; |
