-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.py
121 lines (107 loc) · 4.29 KB
/
runtests.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/env python
#-
# Copyright (c) 2016 SRI International
# All rights reserved.
#
# This software was developed by SRI International and the University of
# Cambridge Computer Laboratory under DARPA/AFRL contract FA8750-10-C-0237
# ("CTSRD"), as part of the DARPA CRASH research programme.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# runtests.py - run FreeBSD tests and export them to a tarfile via a disk
# device.
#
import os
import pexpect
import sys
ALMOST_BOOTED="Starting background file system checks in 60 seconds"
BOOT_FAILURE="Enter full pathname of shell or RETURN for /bin/sh"
LOGIN="login:"
PROMPT="root@beri1:"
def main():
global ALMOST_BOOTED, LOGIN, PROMPT
qemu=os.getenv("QEMU_CMD", "qemu-system-mips")
kernel=os.getenv("QEMU_KERNEL", "kernel")
diskimg=os.getenv("QEMU_DISKIMAGE", "freebsd.img")
tarfile=os.getenv("TEST_TARBALL", "kyua-out.tar")
kyuafile=os.getenv("TEST_KYUAFILE", "/usr/tests/Kyuafile")
filters=os.getenv("TEST_FILTERS", "")
testtimeout=os.getenv("TEST_TIMEOUT", 24 * 60 * 60)
child = pexpect.spawn('%(qemu)s -M malta -kernel %(kernel)s -hda %(diskimg)s -hdb %(tarfile)s -m 2048 -nographic' % {'qemu': qemu, 'kernel': kernel, 'diskimg': diskimg, 'tarfile': tarfile})
child.logfile = sys.stdout
i = child.expect([pexpect.TIMEOUT, ALMOST_BOOTED, BOOT_FAILURE], timeout=10*60)
if i == 0: # Timeout
print "timeout before booted"
print(str(child))
sys.exit(1)
elif i == 0: # start up scripts failed
print "start up scripts failed to run"
sys.exit(1)
print("===> nearly booted")
i = child.expect([pexpect.TIMEOUT, LOGIN], timeout=30)
if i == 0: # Timeout
print "timeout awaiting login prompt"
print(str(child))
sys.exit(1)
print("===> got login prompt")
child.sendline("root")
i = child.expect([pexpect.TIMEOUT, PROMPT], timeout=60)
if i == 0: # Timeout
print "timeout awaiting command prompt"
print(str(child))
sys.exit(1)
print("===> got command prompt")
child.sendline("env ASSUME_ALWAYS_YES=yes REPOS_DIR=/etc/pkg-cache pkg bootstrap")
i = child.expect([pexpect.TIMEOUT, PROMPT], timeout=5 * 60)
if i == 0: # Timeout
print "timeout awaiting pkg bootstrap"
print(str(child))
sys.exit(1)
print("===> bootstrapped pkg")
child.sendline("env ASSUME_ALWAYS_YES=yes REPOS_DIR=/etc/pkg-cache pkg install kyua")
i = child.expect([pexpect.TIMEOUT, PROMPT], timeout=10 * 60)
if i == 0: # Timeout
print "timeout awaiting kyua install"
print(str(child))
sys.exit(1)
print("===> installed kyua")
child.sendline("kyua test --results-file=test-results.db -k %(kyuafile)s %(filters)s" % {'kyuafile': kyuafile, 'filters': filters})
i = child.expect([pexpect.TIMEOUT, PROMPT], timeout=testtimeout)
if i == 0: # Timeout
print "timeout awaiting tests"
print(str(child))
sys.exit(1)
print("===> ran tests")
child.sendline("tar cf /dev/ada1 test-results.db")
i = child.expect([pexpect.TIMEOUT, PROMPT, "^db> "], timeout=60)
if i == 0: # Timeout
print "timeout exporting test output"
print(str(child))
sys.exit(1)
elif i == 2: # panic
print "kernel paniced!"
sys.exit(1)
print("===> exported test output")
sys.exit(0)
if __name__ == "__main__":
main()