Dmitry V. Levin
868a66659c
* qemu_multiarch_testing/.gitignore: New file. * qemu_multiarch_testing/README: Update statistics. * qemu_multiarch_testing/hdc.dir/init2: Run "make check". * qemu_multiarch_testing/make-hdc-img.sh: Robustify, automatically calculate hdc image size. * qemu_multiarch_testing/parallel-build-hdc-img.sh: Reduce hdb image size. Report completion of each parallelized task.
18 lines
286 B
Bash
Executable File
18 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
|