android_mt6572_jiabo/external/strace/qemu_multiarch_testing/hdc.dir/init2
2025-09-05 16:56:03 +08:00

17 lines
286 B
Bash
Executable file

#!/bin/sh
umount /mnt # optional
(
set -e -x
cd strace
./configure
make
size strace
make check VERBOSE=1 &&
cat tests/test-suite.log ||:
test "x$FTP_PORT" = x ||
ftpput -P "$FTP_PORT" "$FTP_SERVER" strace
) 2>&1 | tee strace_build.log
mount -o remount,ro /home
sync
sleep 1