Home
last modified time | relevance | path

Searched +full:precache +full:- +full:functional (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/tests/functional/
H A Dmeson.build1 # QEMU functional tests:
7 # Most tests run too slow with TCI enabled, so skip the functional tests there
237 target_base = dir.split('-')[0]
239 if dir.endswith('-softmmu')
241 test_emulator = emulators['qemu-system-' + target_base]
242 elif dir.endswith('-linux-user')
244 test_emulator = emulators['qemu-' + target_base]
245 elif dir.endswith('-bsd-user')
247 test_emulator = emulators['qemu-' + target_base]
253 suites = ['func-quick', 'func-' + target_base]
[all …]
/openbmc/qemu/.gitlab-ci.d/
H A Dbuildtest-template.yml7 - ccache
11 - source scripts/ci/gitlab-ci-section
12 - section_start setup "Pre-script setup"
13 - JOBS=$(expr $(nproc) + 1)
14 - cat /packages.txt
15 - section_end setup
17 - export CCACHE_BASEDIR="$(pwd)"
18 - export CCACHE_DIR="$CCACHE_BASEDIR/ccache"
19 - export CCACHE_MAXSIZE="500M"
20 - export PATH="$CCACHE_WRAPPERSDIR:$PATH"
[all …]
/openbmc/qemu/tests/
H A DMakefile.include1 # -*- Mode: makefile -*-
3 .PHONY: check-help
4 check-help:
6 …@echo " $(MAKE) check Run block, qapi-schema, unit, softfloat, qtest and decode…
10 @echo " $(MAKE) check-qtest-TARGET Run qtest tests for given target"
11 @echo " $(MAKE) check-qtest Run qtest tests"
12 @echo " $(MAKE) check-functional Run python-based functional tests"
13 @echo " $(MAKE) check-functional-TARGET Run functional tests for a given target"
14 @echo " $(MAKE) check-unit Run qobject tests"
15 @echo " $(MAKE) check-qapi-schema Run QAPI schema tests"
[all …]
/openbmc/qemu/docs/devel/testing/
H A Dfunctional.rst1 .. _checkfunctional-ref:
3 Functional testing with Python
6 The ``tests/functional`` directory hosts functional tests written in
9 The functional tests have initially evolved from the Avocado tests, so there
10 is a lot of similarity to those tests here (see :ref:`checkavocado-ref` for
14 using stdio for the TAP protocol. The folder ``tests/functional/qemu_test``
22 that there is no TAP-incompatible output written to stdio, e.g. either by
43 -------------
45 You can run the functional tests simply by executing:
49 make check-functional
[all …]