1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/env bash
TESTS="
cmd_servlist
cmd_squery
cmd_znc
crypt
destroy_null_bytes
getuser
icb_send_pm
int_diff
int_sum
isValid
is_alphabetic
is_cjk
is_numeric
printtext_convert_wc
realloc_strcat
rot13
size_product
squeeze
squeeze_text_deco
squeeze_text_deco_wide
strColor
strFeed
strToLower
strToUpper
strdup_printf
sw_snprintf
sw_strcat
sw_strcpy
sw_strdup
sw_wcscat
sw_wcscpy
trim
write_to_stream
xstrnlen
xwcswidth
"
for test in $TESTS; do
test -x "${test}.run" && "./${test}.run"
done
|