1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

busybox: Add the file at the right place

This commit is contained in:
Sylvestre Ledru 2022-12-03 17:57:37 +01:00
parent 122cdc270d
commit cc79be035a

View file

@ -772,12 +772,14 @@ jobs:
- name: "Run BusyBox test suite"
shell: bash
run: |
cp .busybox-config target/debug/.config
## Run BusyBox test suite
bindir=$(pwd)/target/debug
cd tmp/busybox-*/testsuite
output=$(bindir=$bindir ./runtest 2>&1 || true)
printf "%s\n" "${output}"
n_fails=$(echo "$output" | grep "^FAIL:\s" | wc --lines)
echo "n_fails $n_fails"
if [ $n_fails -gt 0 ] ; then echo "::warning ::${n_fails}+ test failures" ; fi
test_android: