mirror of
https://github.com/openharmony/third_party_musl2.git
synced 2026-07-19 20:03:38 -04:00
61fa3bd5c9
Signed-off-by: caifuzhou <504631861@qq.com>
18 lines
531 B
Bash
18 lines
531 B
Bash
cd /data/tests/libc-test/src
|
|
rm REPORT
|
|
touch REPORT
|
|
for filelist in $(ls)
|
|
do
|
|
cd /data/tests/libc-test/src/$filelist
|
|
for file in $(ls)
|
|
do
|
|
if [ "$file" = "runtest" ] || [ "$file" = "libdlopen_dso.so" ] || [ "$file" = "libtls_align_dso.so" ] || [ "$file" = "libtls_get_new-dtv_dso.so" ] || [ "$file" = "libtls_init_dso.so" ]; then
|
|
continue
|
|
else
|
|
/data/tests/libc-test/src/common/runtest -w '' $file >>../REPORT
|
|
echo $filelist/$file
|
|
fi
|
|
done
|
|
cd ..
|
|
done
|