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
122
123
124
125
126
127
128
129
130
131
132
|
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2022 Oxide Computer Company
#
include $(SRC)/Makefile.master
SRCS = default.run
ROOTOPTPKG = $(ROOT)/opt/bhyve-tests
RUNFILES = $(ROOTOPTPKG)/runfiles
OUTPUTS = $(SRCS:%=$(RUNFILES)/%)
$(OUTPUTS) : FILEMODE = 0444
all: $(SRCS)
install: $(OUTPUTS)
clean lint clobber:
$(OUTPUTS): $(RUNFILES) $(SRCS)
$(RUNFILES):
$(INS.dir)
$(RUNFILES)/%: %
$(INS.file)
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
# Copyright 2025 Oxide Computer Company
[DEFAULT]
pre =
verbose = False
quiet = False
timeout = 60
post =
outputdir = /var/tmp/test_results
[/opt/bhyve-tests/tests/vmm]
user = root
tests = [
'auto_destruct',
'cpuid_ioctl',
'datarw_constraints',
'datarw_msrs',
'datarw_vcpu',
'default_capabs',
'drv_hold',
'fpu_getset',
'import_vlapic',
'interface_version',
'legacy_destruct',
'maxcpu',
'mem_devmem',
'mem_high',
'mem_partial',
'mem_seg_map',
'npt_ops',
'pause_resume',
'self_destruct'
]
[/opt/bhyve-tests/tests/kdev]
user = root
tests = [
'vatpit_freq',
'vhpet_freq',
'vlapic_freq',
'vlapic_freq_periodic',
'vlapic_mmio_access',
'vlapic_msr_access',
'vpmtmr_freq',
'vrtc_ops',
'wrmsr_tsc',
'rdmsr_tsc'
]
[/opt/bhyve-tests/tests/inst_emul]
user = root
tests = [
'cpuid',
'cpuid_guest_state',
'imul',
'rdmsr',
'wrmsr',
'triple_fault',
'exit_paging',
'page_dirty',
'exit_consistent',
'suspend_info',
'vcpu_barrier'
]
[/opt/bhyve-tests/tests/viona]
user = root
pre = setup
post = cleanup
tests = [
'interface_version',
'create_delete',
'link_params'
]
# Tests of userspace mevent system, built from cmd/bhyve
[/opt/bhyve-tests/tests/mevent]
tests = ['lists_delete', 'read_disable', 'read_pause', 'read_requeue',
'vnode_file']
[/opt/bhyve-tests/tests/mevent/vnode_zvol]
user = root
|