Searched +full:precache +full:- +full:functional (Results 1 – 4 of 4) sorted by relevance
1 # QEMU functional tests:7 # Most tests run too slow with TCI enabled, so skip the functional tests there237 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 …]
7 - ccache11 - source scripts/ci/gitlab-ci-section12 - section_start setup "Pre-script setup"13 - JOBS=$(expr $(nproc) + 1)14 - cat /packages.txt15 - section_end setup17 - export CCACHE_BASEDIR="$(pwd)"18 - export CCACHE_DIR="$CCACHE_BASEDIR/ccache"19 - export CCACHE_MAXSIZE="500M"20 - export PATH="$CCACHE_WRAPPERSDIR:$PATH"[all …]
1 # -*- Mode: makefile -*-3 .PHONY: check-help4 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 …]
1 .. _checkfunctional-ref:3 Functional testing with Python6 The ``tests/functional`` directory hosts functional tests written in9 The functional tests have initially evolved from the Avocado tests, so there10 is a lot of similarity to those tests here (see :ref:`checkavocado-ref` for14 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 by43 -------------45 You can run the functional tests simply by executing:49 make check-functional[all …]