qt5-ptest: give rwx permission to user for all the test files

Otherwise, ptest will fail with numerous Permission Denied errors

Signed-off-by: Mingde (Matthew) Zeng <matthew.zeng@windriver.com>
This commit is contained in:
Mingde (Matthew) Zeng
2020-05-08 00:58:26 -04:00
committed by Martin Jansa
parent d2ff90b286
commit 0d4af49fe1

View File

@@ -16,7 +16,7 @@ fakeroot do_install_ptest() {
for var in ` find ${B}/tests/auto/ -name tst_*`; do
if [ -z ` echo ${var##*/} | grep '\.'` ]; then
echo ${var##*/} >> ${t}/tst_list
install -m 0644 ${var} ${t}
install -m 0744 ${var} ${t}
fi
done
}