- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
31 lines
625 B
Bash
31 lines
625 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -s tst_list ]; then
|
|
echo PASS: no tests
|
|
exit 0
|
|
fi
|
|
|
|
if [ -z "$LANG" ]; then
|
|
export LANG=C.UTF-8
|
|
fi
|
|
if [ -z "$QT_QPA_PLATFORM" ]; then
|
|
export QT_QPA_PLATFORM=offscreen
|
|
fi
|
|
if [ $UID -ne 0 ]; then
|
|
if [ ! -w ${HOME} ]; then
|
|
echo "Home directory should be writable, run as root:"
|
|
echo "usermod -d /home/${USER} ${USER} && mkhomedir_helper ${USER}"
|
|
fi
|
|
fi
|
|
if [ $UID -eq 0 ]; then
|
|
export QTWEBENGINE_DISABLE_SANDBOX=1
|
|
fi
|
|
|
|
for test in $(cat tst_list); do
|
|
(
|
|
cd $(dirname ${test})
|
|
t=$(basename ${test})
|
|
./${t} && echo PASS: ${t} || echo FAIL: ${t}
|
|
)
|
|
done
|