Files
tqma6-yocto-mirror/sources/poky/meta/recipes-devtools/quilt/quilt/test.sh
Siggi (OpenClaw Agent) 16accb6b24 Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 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)
2026-03-01 21:14:11 +00:00

25 lines
469 B
Bash
Executable File

#! /bin/sh
set -e -u
export LANG=C
export LC_ALL=C
export P=patches/
export _P=../patches/
export QUILTRC=$(pwd)/test/test.quiltrc
export QUILT_PC=.pc
export QUILT_DIR=/usr/share/quilt/
# Specify on the commandline, else runs all of the tests
TESTS=${@:-test/*.test}
for FILENAME in $TESTS; do
TESTNAME=$(basename $FILENAME .test)
./test/run $FILENAME
if [ $? -eq 0 ];
then echo PASS: $TESTNAME
else
echo FAIL: $TESTNAME
fi
done