mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-03 05:37:16 +00:00
Results: $ ptest-runner libssh START: ptest-runner 2023-03-16T02:56 BEGIN: /usr/lib/libssh/ptest PASS: torture_bind_config PASS: torture_buffer PASS: torture_bytearray PASS: torture_callbacks PASS: torture_channel PASS: torture_config PASS: torture_crypto PASS: torture_hashes PASS: torture_init PASS: torture_isipaddr PASS: torture_keyfiles PASS: torture_knownhosts_parsing PASS: torture_list PASS: torture_misc PASS: torture_moduli PASS: torture_options PASS: torture_packet PASS: torture_packet_filter PASS: torture_pki PASS: torture_pki_ecdsa PASS: torture_pki_ed25519 PASS: torture_pki_rsa PASS: torture_push_pop_dir PASS: torture_rand PASS: torture_session_keys PASS: torture_temp_dir PASS: torture_temp_file PASS: torture_threads_buffer PASS: torture_threads_crypto PASS: torture_threads_init PASS: torture_threads_pki_rsa PASS: torture_tokens DURATION: 24 END: /usr/lib/libssh/ptest 2023-03-16T02:56 STOP: ptest-runner TOTAL: 1 FAIL: 0 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
54 lines
1.2 KiB
Bash
54 lines
1.2 KiB
Bash
#!/bin/sh
|
|
|
|
# Valid tests to run
|
|
tests="torture_bind_config \
|
|
torture_buffer \
|
|
torture_bytearray \
|
|
torture_callbacks \
|
|
torture_channel \
|
|
torture_config \
|
|
torture_crypto \
|
|
torture_hashes \
|
|
torture_init \
|
|
torture_isipaddr \
|
|
torture_keyfiles \
|
|
torture_knownhosts_parsing \
|
|
torture_list \
|
|
torture_misc \
|
|
torture_moduli \
|
|
torture_options \
|
|
torture_packet \
|
|
torture_packet_filter \
|
|
torture_pki \
|
|
torture_pki_ecdsa \
|
|
torture_pki_ed25519 \
|
|
torture_pki_rsa \
|
|
torture_push_pop_dir \
|
|
torture_rand \
|
|
torture_session_keys \
|
|
torture_temp_dir \
|
|
torture_temp_file \
|
|
torture_threads_buffer \
|
|
torture_threads_crypto \
|
|
torture_threads_init \
|
|
torture_threads_pki_rsa \
|
|
torture_tokens \
|
|
"
|
|
|
|
ptestdir=$(dirname "$(readlink -f "$0")")
|
|
cd "$ptestdir"/tests || exit
|
|
|
|
# Run specified tests
|
|
for f in $tests
|
|
do
|
|
if test -e ./"$f"; then
|
|
if ./"$f" > ./"$f".out 2> ./"$f".err; then
|
|
echo "PASS: $f"
|
|
else
|
|
echo "FAIL: $f"
|
|
fi
|
|
else
|
|
echo "SKIP: $f"
|
|
fi
|
|
done
|