- 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)
24 lines
728 B
Bash
24 lines
728 B
Bash
#!/bin/sh
|
|
|
|
# This script runs tests taken from the github CI for the Double-Conversion library.
|
|
# For more information, please see: https://github.com/google/double-conversion/blob/master/.github/workflows/ci.yml#L60
|
|
|
|
# Count the number of failed tests
|
|
NUM_FAILS=0
|
|
|
|
# Run all tests using ctest
|
|
ctest -V
|
|
|
|
# VCount the number of failed tests by checking the LastTest.log file generated by ctest
|
|
NUM_FAILS=$(grep -c "Failed" Testing/Temporary/LastTest.log)
|
|
|
|
# Run the tests directly as well, just in case we forgot to add it to ctest
|
|
test/cctest/cctest
|
|
if [ $? -ne 0 ]; then
|
|
# If the test failed, increment the number of failed tests
|
|
NUM_FAILS=$(expr $NUM_FAILS + 1)
|
|
fi
|
|
|
|
# Return the number of failed tests
|
|
exit $NUM_FAILS
|