1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#!/bin/sh
#
# Regression test: Automated install of NetBSD/pmax using R3000 CPU.
#
# 1. Place the iso here:
#
# ../../emul/mips/pmaxcd-5.1.1.iso
#
# (update test_netbsd_pmax_install.*expect when changing version)
#
# 2. Start the regression test with:
#
# test/test_netbsd_pmax_install.sh
#
rm -f nbsd_pmax.img
dd if=/dev/zero of=nbsd_pmax.img bs=1024 count=1 seek=1900000
sync
sleep 2
time test/test_netbsd_pmax_install.expect 2> /tmp/gxemul_result
echo
echo
echo
cat /tmp/gxemul_result
|