summaryrefslogtreecommitdiff
path: root/qemu_multiarch_testing/hdc.dir/init2
blob: 58225c6657c90e8fb717aa5a048750c68b96c9e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

umount /mnt # optional
echo "Building"
(
	cd strace &&
	./configure &&
	make &&
	echo "Build: SUCCESS" &&
	./strace
	# strace may segfault, let's see exit code
	echo "Exit code: $?"
) 2>&1 | tee strace_build.log
mount -o remount,ro /home
sync
sleep 1