]> git.proxmox.com Git - mirror_qemu.git/blob - docs/devel/testing.rst
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190927' into...
[mirror_qemu.git] / docs / devel / testing.rst
1 ===============
2 Testing in QEMU
3 ===============
4
5 This document describes the testing infrastructure in QEMU.
6
7 Testing with "make check"
8 =========================
9
10 The "make check" testing family includes most of the C based tests in QEMU. For
11 a quick help, run ``make check-help`` from the source tree.
12
13 The usual way to run these tests is:
14
15 .. code::
16
17 make check
18
19 which includes QAPI schema tests, unit tests, and QTests. Different sub-types
20 of "make check" tests will be explained below.
21
22 Before running tests, it is best to build QEMU programs first. Some tests
23 expect the executables to exist and will fail with obscure messages if they
24 cannot find them.
25
26 Unit tests
27 ----------
28
29 Unit tests, which can be invoked with ``make check-unit``, are simple C tests
30 that typically link to individual QEMU object files and exercise them by
31 calling exported functions.
32
33 If you are writing new code in QEMU, consider adding a unit test, especially
34 for utility modules that are relatively stateless or have few dependencies. To
35 add a new unit test:
36
37 1. Create a new source file. For example, ``tests/foo-test.c``.
38
39 2. Write the test. Normally you would include the header file which exports
40 the module API, then verify the interface behaves as expected from your
41 test. The test code should be organized with the glib testing framework.
42 Copying and modifying an existing test is usually a good idea.
43
44 3. Add the test to ``tests/Makefile.include``. First, name the unit test
45 program and add it to ``$(check-unit-y)``; then add a rule to build the
46 executable. For example:
47
48 .. code::
49
50 check-unit-y += tests/foo-test$(EXESUF)
51 tests/foo-test$(EXESUF): tests/foo-test.o $(test-util-obj-y)
52 ...
53
54 Since unit tests don't require environment variables, the simplest way to debug
55 a unit test failure is often directly invoking it or even running it under
56 ``gdb``. However there can still be differences in behavior between ``make``
57 invocations and your manual run, due to ``$MALLOC_PERTURB_`` environment
58 variable (which affects memory reclamation and catches invalid pointers better)
59 and gtester options. If necessary, you can run
60
61 .. code::
62
63 make check-unit V=1
64
65 and copy the actual command line which executes the unit test, then run
66 it from the command line.
67
68 QTest
69 -----
70
71 QTest is a device emulation testing framework. It can be very useful to test
72 device models; it could also control certain aspects of QEMU (such as virtual
73 clock stepping), with a special purpose "qtest" protocol. Refer to the
74 documentation in ``qtest.c`` for more details of the protocol.
75
76 QTest cases can be executed with
77
78 .. code::
79
80 make check-qtest
81
82 The QTest library is implemented by ``tests/libqtest.c`` and the API is defined
83 in ``tests/libqtest.h``.
84
85 Consider adding a new QTest case when you are introducing a new virtual
86 hardware, or extending one if you are adding functionalities to an existing
87 virtual device.
88
89 On top of libqtest, a higher level library, ``libqos``, was created to
90 encapsulate common tasks of device drivers, such as memory management and
91 communicating with system buses or devices. Many virtual device tests use
92 libqos instead of directly calling into libqtest.
93
94 Steps to add a new QTest case are:
95
96 1. Create a new source file for the test. (More than one file can be added as
97 necessary.) For example, ``tests/test-foo-device.c``.
98
99 2. Write the test code with the glib and libqtest/libqos API. See also existing
100 tests and the library headers for reference.
101
102 3. Register the new test in ``tests/Makefile.include``. Add the test executable
103 name to an appropriate ``check-qtest-*-y`` variable. For example:
104
105 ``check-qtest-generic-y = tests/test-foo-device$(EXESUF)``
106
107 4. Add object dependencies of the executable in the Makefile, including the
108 test source file(s) and other interesting objects. For example:
109
110 ``tests/test-foo-device$(EXESUF): tests/test-foo-device.o $(libqos-obj-y)``
111
112 Debugging a QTest failure is slightly harder than the unit test because the
113 tests look up QEMU program names in the environment variables, such as
114 ``QTEST_QEMU_BINARY`` and ``QTEST_QEMU_IMG``, and also because it is not easy
115 to attach gdb to the QEMU process spawned from the test. But manual invoking
116 and using gdb on the test is still simple to do: find out the actual command
117 from the output of
118
119 .. code::
120
121 make check-qtest V=1
122
123 which you can run manually.
124
125 QAPI schema tests
126 -----------------
127
128 The QAPI schema tests validate the QAPI parser used by QMP, by feeding
129 predefined input to the parser and comparing the result with the reference
130 output.
131
132 The input/output data is managed under the ``tests/qapi-schema`` directory.
133 Each test case includes four files that have a common base name:
134
135 * ``${casename}.json`` - the file contains the JSON input for feeding the
136 parser
137 * ``${casename}.out`` - the file contains the expected stdout from the parser
138 * ``${casename}.err`` - the file contains the expected stderr from the parser
139 * ``${casename}.exit`` - the expected error code
140
141 Consider adding a new QAPI schema test when you are making a change on the QAPI
142 parser (either fixing a bug or extending/modifying the syntax). To do this:
143
144 1. Add four files for the new case as explained above. For example:
145
146 ``$EDITOR tests/qapi-schema/foo.{json,out,err,exit}``.
147
148 2. Add the new test in ``tests/Makefile.include``. For example:
149
150 ``qapi-schema += foo.json``
151
152 check-block
153 -----------
154
155 ``make check-block`` is a legacy command to invoke block layer iotests and is
156 rarely used. See "QEMU iotests" section below for more information.
157
158 GCC gcov support
159 ----------------
160
161 ``gcov`` is a GCC tool to analyze the testing coverage by
162 instrumenting the tested code. To use it, configure QEMU with
163 ``--enable-gcov`` option and build. Then run ``make check`` as usual.
164
165 If you want to gather coverage information on a single test the ``make
166 clean-coverage`` target can be used to delete any existing coverage
167 information before running a single test.
168
169 You can generate a HTML coverage report by executing ``make
170 coverage-report`` which will create
171 ./reports/coverage/coverage-report.html. If you want to create it
172 elsewhere simply execute ``make /foo/bar/baz/coverage-report.html``.
173
174 Further analysis can be conducted by running the ``gcov`` command
175 directly on the various .gcda output files. Please read the ``gcov``
176 documentation for more information.
177
178 QEMU iotests
179 ============
180
181 QEMU iotests, under the directory ``tests/qemu-iotests``, is the testing
182 framework widely used to test block layer related features. It is higher level
183 than "make check" tests and 99% of the code is written in bash or Python
184 scripts. The testing success criteria is golden output comparison, and the
185 test files are named with numbers.
186
187 To run iotests, make sure QEMU is built successfully, then switch to the
188 ``tests/qemu-iotests`` directory under the build directory, and run ``./check``
189 with desired arguments from there.
190
191 By default, "raw" format and "file" protocol is used; all tests will be
192 executed, except the unsupported ones. You can override the format and protocol
193 with arguments:
194
195 .. code::
196
197 # test with qcow2 format
198 ./check -qcow2
199 # or test a different protocol
200 ./check -nbd
201
202 It's also possible to list test numbers explicitly:
203
204 .. code::
205
206 # run selected cases with qcow2 format
207 ./check -qcow2 001 030 153
208
209 Cache mode can be selected with the "-c" option, which may help reveal bugs
210 that are specific to certain cache mode.
211
212 More options are supported by the ``./check`` script, run ``./check -h`` for
213 help.
214
215 Writing a new test case
216 -----------------------
217
218 Consider writing a tests case when you are making any changes to the block
219 layer. An iotest case is usually the choice for that. There are already many
220 test cases, so it is possible that extending one of them may achieve the goal
221 and save the boilerplate to create one. (Unfortunately, there isn't a 100%
222 reliable way to find a related one out of hundreds of tests. One approach is
223 using ``git grep``.)
224
225 Usually an iotest case consists of two files. One is an executable that
226 produces output to stdout and stderr, the other is the expected reference
227 output. They are given the same number in file names. E.g. Test script ``055``
228 and reference output ``055.out``.
229
230 In rare cases, when outputs differ between cache mode ``none`` and others, a
231 ``.out.nocache`` file is added. In other cases, when outputs differ between
232 image formats, more than one ``.out`` files are created ending with the
233 respective format names, e.g. ``178.out.qcow2`` and ``178.out.raw``.
234
235 There isn't a hard rule about how to write a test script, but a new test is
236 usually a (copy and) modification of an existing case. There are a few
237 commonly used ways to create a test:
238
239 * A Bash script. It will make use of several environmental variables related
240 to the testing procedure, and could source a group of ``common.*`` libraries
241 for some common helper routines.
242
243 * A Python unittest script. Import ``iotests`` and create a subclass of
244 ``iotests.QMPTestCase``, then call ``iotests.main`` method. The downside of
245 this approach is that the output is too scarce, and the script is considered
246 harder to debug.
247
248 * A simple Python script without using unittest module. This could also import
249 ``iotests`` for launching QEMU and utilities etc, but it doesn't inherit
250 from ``iotests.QMPTestCase`` therefore doesn't use the Python unittest
251 execution. This is a combination of 1 and 2.
252
253 Pick the language per your preference since both Bash and Python have
254 comparable library support for invoking and interacting with QEMU programs. If
255 you opt for Python, it is strongly recommended to write Python 3 compatible
256 code.
257
258 Both Python and Bash frameworks in iotests provide helpers to manage test
259 images. They can be used to create and clean up images under the test
260 directory. If no I/O or any protocol specific feature is needed, it is often
261 more convenient to use the pseudo block driver, ``null-co://``, as the test
262 image, which doesn't require image creation or cleaning up. Avoid system-wide
263 devices or files whenever possible, such as ``/dev/null`` or ``/dev/zero``.
264 Otherwise, image locking implications have to be considered. For example,
265 another application on the host may have locked the file, possibly leading to a
266 test failure. If using such devices are explicitly desired, consider adding
267 ``locking=off`` option to disable image locking.
268
269 .. _docker-ref:
270
271 Docker based tests
272 ==================
273
274 Introduction
275 ------------
276
277 The Docker testing framework in QEMU utilizes public Docker images to build and
278 test QEMU in predefined and widely accessible Linux environments. This makes
279 it possible to expand the test coverage across distros, toolchain flavors and
280 library versions.
281
282 Prerequisites
283 -------------
284
285 Install "docker" with the system package manager and start the Docker service
286 on your development machine, then make sure you have the privilege to run
287 Docker commands. Typically it means setting up passwordless ``sudo docker``
288 command or login as root. For example:
289
290 .. code::
291
292 $ sudo yum install docker
293 $ # or `apt-get install docker` for Ubuntu, etc.
294 $ sudo systemctl start docker
295 $ sudo docker ps
296
297 The last command should print an empty table, to verify the system is ready.
298
299 An alternative method to set up permissions is by adding the current user to
300 "docker" group and making the docker daemon socket file (by default
301 ``/var/run/docker.sock``) accessible to the group:
302
303 .. code::
304
305 $ sudo groupadd docker
306 $ sudo usermod $USER -a -G docker
307 $ sudo chown :docker /var/run/docker.sock
308
309 Note that any one of above configurations makes it possible for the user to
310 exploit the whole host with Docker bind mounting or other privileged
311 operations. So only do it on development machines.
312
313 Quickstart
314 ----------
315
316 From source tree, type ``make docker`` to see the help. Testing can be started
317 without configuring or building QEMU (``configure`` and ``make`` are done in
318 the container, with parameters defined by the make target):
319
320 .. code::
321
322 make docker-test-build@min-glib
323
324 This will create a container instance using the ``min-glib`` image (the image
325 is downloaded and initialized automatically), in which the ``test-build`` job
326 is executed.
327
328 Images
329 ------
330
331 Along with many other images, the ``min-glib`` image is defined in a Dockerfile
332 in ``tests/docker/dockerfiles/``, called ``min-glib.docker``. ``make docker``
333 command will list all the available images.
334
335 To add a new image, simply create a new ``.docker`` file under the
336 ``tests/docker/dockerfiles/`` directory.
337
338 A ``.pre`` script can be added beside the ``.docker`` file, which will be
339 executed before building the image under the build context directory. This is
340 mainly used to do necessary host side setup. One such setup is ``binfmt_misc``,
341 for example, to make qemu-user powered cross build containers work.
342
343 Tests
344 -----
345
346 Different tests are added to cover various configurations to build and test
347 QEMU. Docker tests are the executables under ``tests/docker`` named
348 ``test-*``. They are typically shell scripts and are built on top of a shell
349 library, ``tests/docker/common.rc``, which provides helpers to find the QEMU
350 source and build it.
351
352 The full list of tests is printed in the ``make docker`` help.
353
354 Tools
355 -----
356
357 There are executables that are created to run in a specific Docker environment.
358 This makes it easy to write scripts that have heavy or special dependencies,
359 but are still very easy to use.
360
361 Currently the only tool is ``travis``, which mimics the Travis-CI tests in a
362 container. It runs in the ``travis`` image:
363
364 .. code::
365
366 make docker-travis@travis
367
368 Debugging a Docker test failure
369 -------------------------------
370
371 When CI tasks, maintainers or yourself report a Docker test failure, follow the
372 below steps to debug it:
373
374 1. Locally reproduce the failure with the reported command line. E.g. run
375 ``make docker-test-mingw@fedora J=8``.
376 2. Add "V=1" to the command line, try again, to see the verbose output.
377 3. Further add "DEBUG=1" to the command line. This will pause in a shell prompt
378 in the container right before testing starts. You could either manually
379 build QEMU and run tests from there, or press Ctrl-D to let the Docker
380 testing continue.
381 4. If you press Ctrl-D, the same building and testing procedure will begin, and
382 will hopefully run into the error again. After that, you will be dropped to
383 the prompt for debug.
384
385 Options
386 -------
387
388 Various options can be used to affect how Docker tests are done. The full
389 list is in the ``make docker`` help text. The frequently used ones are:
390
391 * ``V=1``: the same as in top level ``make``. It will be propagated to the
392 container and enable verbose output.
393 * ``J=$N``: the number of parallel tasks in make commands in the container,
394 similar to the ``-j $N`` option in top level ``make``. (The ``-j`` option in
395 top level ``make`` will not be propagated into the container.)
396 * ``DEBUG=1``: enables debug. See the previous "Debugging a Docker test
397 failure" section.
398
399 VM testing
400 ==========
401
402 This test suite contains scripts that bootstrap various guest images that have
403 necessary packages to build QEMU. The basic usage is documented in ``Makefile``
404 help which is displayed with ``make vm-help``.
405
406 Quickstart
407 ----------
408
409 Run ``make vm-help`` to list available make targets. Invoke a specific make
410 command to run build test in an image. For example, ``make vm-build-freebsd``
411 will build the source tree in the FreeBSD image. The command can be executed
412 from either the source tree or the build dir; if the former, ``./configure`` is
413 not needed. The command will then generate the test image in ``./tests/vm/``
414 under the working directory.
415
416 Note: images created by the scripts accept a well-known RSA key pair for SSH
417 access, so they SHOULD NOT be exposed to external interfaces if you are
418 concerned about attackers taking control of the guest and potentially
419 exploiting a QEMU security bug to compromise the host.
420
421 QEMU binary
422 -----------
423
424 By default, qemu-system-x86_64 is searched in $PATH to run the guest. If there
425 isn't one, or if it is older than 2.10, the test won't work. In this case,
426 provide the QEMU binary in env var: ``QEMU=/path/to/qemu-2.10+``.
427
428 Make jobs
429 ---------
430
431 The ``-j$X`` option in the make command line is not propagated into the VM,
432 specify ``J=$X`` to control the make jobs in the guest.
433
434 Debugging
435 ---------
436
437 Add ``DEBUG=1`` and/or ``V=1`` to the make command to allow interactive
438 debugging and verbose output. If this is not enough, see the next section.
439 ``V=1`` will be propagated down into the make jobs in the guest.
440
441 Manual invocation
442 -----------------
443
444 Each guest script is an executable script with the same command line options.
445 For example to work with the netbsd guest, use ``$QEMU_SRC/tests/vm/netbsd``:
446
447 .. code::
448
449 $ cd $QEMU_SRC/tests/vm
450
451 # To bootstrap the image
452 $ ./netbsd --build-image --image /var/tmp/netbsd.img
453 <...>
454
455 # To run an arbitrary command in guest (the output will not be echoed unless
456 # --debug is added)
457 $ ./netbsd --debug --image /var/tmp/netbsd.img uname -a
458
459 # To build QEMU in guest
460 $ ./netbsd --debug --image /var/tmp/netbsd.img --build-qemu $QEMU_SRC
461
462 # To get to an interactive shell
463 $ ./netbsd --interactive --image /var/tmp/netbsd.img sh
464
465 Adding new guests
466 -----------------
467
468 Please look at existing guest scripts for how to add new guests.
469
470 Most importantly, create a subclass of BaseVM and implement ``build_image()``
471 method and define ``BUILD_SCRIPT``, then finally call ``basevm.main()`` from
472 the script's ``main()``.
473
474 * Usually in ``build_image()``, a template image is downloaded from a
475 predefined URL. ``BaseVM._download_with_cache()`` takes care of the cache and
476 the checksum, so consider using it.
477
478 * Once the image is downloaded, users, SSH server and QEMU build deps should
479 be set up:
480
481 - Root password set to ``BaseVM.ROOT_PASS``
482 - User ``BaseVM.GUEST_USER`` is created, and password set to
483 ``BaseVM.GUEST_PASS``
484 - SSH service is enabled and started on boot,
485 ``$QEMU_SRC/tests/keys/id_rsa.pub`` is added to ssh's ``authorized_keys``
486 file of both root and the normal user
487 - DHCP client service is enabled and started on boot, so that it can
488 automatically configure the virtio-net-pci NIC and communicate with QEMU
489 user net (10.0.2.2)
490 - Necessary packages are installed to untar the source tarball and build
491 QEMU
492
493 * Write a proper ``BUILD_SCRIPT`` template, which should be a shell script that
494 untars a raw virtio-blk block device, which is the tarball data blob of the
495 QEMU source tree, then configure/build it. Running "make check" is also
496 recommended.
497
498 Image fuzzer testing
499 ====================
500
501 An image fuzzer was added to exercise format drivers. Currently only qcow2 is
502 supported. To start the fuzzer, run
503
504 .. code::
505
506 tests/image-fuzzer/runner.py -c '[["qemu-img", "info", "$test_img"]]' /tmp/test qcow2
507
508 Alternatively, some command different from "qemu-img info" can be tested, by
509 changing the ``-c`` option.
510
511 Acceptance tests using the Avocado Framework
512 ============================================
513
514 The ``tests/acceptance`` directory hosts functional tests, also known
515 as acceptance level tests. They're usually higher level tests, and
516 may interact with external resources and with various guest operating
517 systems.
518
519 These tests are written using the Avocado Testing Framework (which must
520 be installed separately) in conjunction with a the ``avocado_qemu.Test``
521 class, implemented at ``tests/acceptance/avocado_qemu``.
522
523 Tests based on ``avocado_qemu.Test`` can easily:
524
525 * Customize the command line arguments given to the convenience
526 ``self.vm`` attribute (a QEMUMachine instance)
527
528 * Interact with the QEMU monitor, send QMP commands and check
529 their results
530
531 * Interact with the guest OS, using the convenience console device
532 (which may be useful to assert the effectiveness and correctness of
533 command line arguments or QMP commands)
534
535 * Interact with external data files that accompany the test itself
536 (see ``self.get_data()``)
537
538 * Download (and cache) remote data files, such as firmware and kernel
539 images
540
541 * Have access to a library of guest OS images (by means of the
542 ``avocado.utils.vmimage`` library)
543
544 * Make use of various other test related utilities available at the
545 test class itself and at the utility library:
546
547 - http://avocado-framework.readthedocs.io/en/latest/api/test/avocado.html#avocado.Test
548 - http://avocado-framework.readthedocs.io/en/latest/api/utils/avocado.utils.html
549
550 Running tests
551 -------------
552
553 You can run the acceptance tests simply by executing:
554
555 .. code::
556
557 make check-acceptance
558
559 This involves the automatic creation of Python virtual environment
560 within the build tree (at ``tests/venv``) which will have all the
561 right dependencies, and will save tests results also within the
562 build tree (at ``tests/results``).
563
564 Note: the build environment must be using a Python 3 stack, and have
565 the ``venv`` and ``pip`` packages installed. If necessary, make sure
566 ``configure`` is called with ``--python=`` and that those modules are
567 available. On Debian and Ubuntu based systems, depending on the
568 specific version, they may be on packages named ``python3-venv`` and
569 ``python3-pip``.
570
571 The scripts installed inside the virtual environment may be used
572 without an "activation". For instance, the Avocado test runner
573 may be invoked by running:
574
575 .. code::
576
577 tests/venv/bin/avocado run $OPTION1 $OPTION2 tests/acceptance/
578
579 Manual Installation
580 -------------------
581
582 To manually install Avocado and its dependencies, run:
583
584 .. code::
585
586 pip install --user avocado-framework
587
588 Alternatively, follow the instructions on this link:
589
590 http://avocado-framework.readthedocs.io/en/latest/GetStartedGuide.html#installing-avocado
591
592 Overview
593 --------
594
595 The ``tests/acceptance/avocado_qemu`` directory provides the
596 ``avocado_qemu`` Python module, containing the ``avocado_qemu.Test``
597 class. Here's a simple usage example:
598
599 .. code::
600
601 from avocado_qemu import Test
602
603
604 class Version(Test):
605 """
606 :avocado: tags=quick
607 """
608 def test_qmp_human_info_version(self):
609 self.vm.launch()
610 res = self.vm.command('human-monitor-command',
611 command_line='info version')
612 self.assertRegexpMatches(res, r'^(\d+\.\d+\.\d)')
613
614 To execute your test, run:
615
616 .. code::
617
618 avocado run version.py
619
620 Tests may be classified according to a convention by using docstring
621 directives such as ``:avocado: tags=TAG1,TAG2``. To run all tests
622 in the current directory, tagged as "quick", run:
623
624 .. code::
625
626 avocado run -t quick .
627
628 The ``avocado_qemu.Test`` base test class
629 -----------------------------------------
630
631 The ``avocado_qemu.Test`` class has a number of characteristics that
632 are worth being mentioned right away.
633
634 First of all, it attempts to give each test a ready to use QEMUMachine
635 instance, available at ``self.vm``. Because many tests will tweak the
636 QEMU command line, launching the QEMUMachine (by using ``self.vm.launch()``)
637 is left to the test writer.
638
639 The base test class has also support for tests with more than one
640 QEMUMachine. The way to get machines is through the ``self.get_vm()``
641 method which will return a QEMUMachine instance. The ``self.get_vm()``
642 method accepts arguments that will be passed to the QEMUMachine creation
643 and also an optional `name` attribute so you can identify a specific
644 machine and get it more than once through the tests methods. A simple
645 and hypothetical example follows:
646
647 .. code::
648
649 from avocado_qemu import Test
650
651
652 class MultipleMachines(Test):
653 """
654 :avocado: enable
655 """
656 def test_multiple_machines(self):
657 first_machine = self.get_vm()
658 second_machine = self.get_vm()
659 self.get_vm(name='third_machine').launch()
660
661 first_machine.launch()
662 second_machine.launch()
663
664 first_res = first_machine.command(
665 'human-monitor-command',
666 command_line='info version')
667
668 second_res = second_machine.command(
669 'human-monitor-command',
670 command_line='info version')
671
672 third_res = self.get_vm(name='third_machine').command(
673 'human-monitor-command',
674 command_line='info version')
675
676 self.assertEquals(first_res, second_res, third_res)
677
678 At test "tear down", ``avocado_qemu.Test`` handles all the QEMUMachines
679 shutdown.
680
681 QEMUMachine
682 ~~~~~~~~~~~
683
684 The QEMUMachine API is already widely used in the Python iotests,
685 device-crash-test and other Python scripts. It's a wrapper around the
686 execution of a QEMU binary, giving its users:
687
688 * the ability to set command line arguments to be given to the QEMU
689 binary
690
691 * a ready to use QMP connection and interface, which can be used to
692 send commands and inspect its results, as well as asynchronous
693 events
694
695 * convenience methods to set commonly used command line arguments in
696 a more succinct and intuitive way
697
698 QEMU binary selection
699 ~~~~~~~~~~~~~~~~~~~~~
700
701 The QEMU binary used for the ``self.vm`` QEMUMachine instance will
702 primarily depend on the value of the ``qemu_bin`` parameter. If it's
703 not explicitly set, its default value will be the result of a dynamic
704 probe in the same source tree. A suitable binary will be one that
705 targets the architecture matching host machine.
706
707 Based on this description, test writers will usually rely on one of
708 the following approaches:
709
710 1) Set ``qemu_bin``, and use the given binary
711
712 2) Do not set ``qemu_bin``, and use a QEMU binary named like
713 "${arch}-softmmu/qemu-system-${arch}", either in the current
714 working directory, or in the current source tree.
715
716 The resulting ``qemu_bin`` value will be preserved in the
717 ``avocado_qemu.Test`` as an attribute with the same name.
718
719 Attribute reference
720 -------------------
721
722 Besides the attributes and methods that are part of the base
723 ``avocado.Test`` class, the following attributes are available on any
724 ``avocado_qemu.Test`` instance.
725
726 vm
727 ~~
728
729 A QEMUMachine instance, initially configured according to the given
730 ``qemu_bin`` parameter.
731
732 arch
733 ~~~~
734
735 The architecture can be used on different levels of the stack, e.g. by
736 the framework or by the test itself. At the framework level, it will
737 currently influence the selection of a QEMU binary (when one is not
738 explicitly given).
739
740 Tests are also free to use this attribute value, for their own needs.
741 A test may, for instance, use the same value when selecting the
742 architecture of a kernel or disk image to boot a VM with.
743
744 The ``arch`` attribute will be set to the test parameter of the same
745 name. If one is not given explicitly, it will either be set to
746 ``None``, or, if the test is tagged with one (and only one)
747 ``:avocado: tags=arch:VALUE`` tag, it will be set to ``VALUE``.
748
749 qemu_bin
750 ~~~~~~~~
751
752 The preserved value of the ``qemu_bin`` parameter or the result of the
753 dynamic probe for a QEMU binary in the current working directory or
754 source tree.
755
756 Parameter reference
757 -------------------
758
759 To understand how Avocado parameters are accessed by tests, and how
760 they can be passed to tests, please refer to::
761
762 http://avocado-framework.readthedocs.io/en/latest/WritingTests.html#accessing-test-parameters
763
764 Parameter values can be easily seen in the log files, and will look
765 like the following:
766
767 .. code::
768
769 PARAMS (key=qemu_bin, path=*, default=x86_64-softmmu/qemu-system-x86_64) => 'x86_64-softmmu/qemu-system-x86_64
770
771 arch
772 ~~~~
773
774 The architecture that will influence the selection of a QEMU binary
775 (when one is not explicitly given).
776
777 Tests are also free to use this parameter value, for their own needs.
778 A test may, for instance, use the same value when selecting the
779 architecture of a kernel or disk image to boot a VM with.
780
781 This parameter has a direct relation with the ``arch`` attribute. If
782 not given, it will default to None.
783
784 qemu_bin
785 ~~~~~~~~
786
787 The exact QEMU binary to be used on QEMUMachine.
788
789 Uninstalling Avocado
790 --------------------
791
792 If you've followed the manual installation instructions above, you can
793 easily uninstall Avocado. Start by listing the packages you have
794 installed::
795
796 pip list --user
797
798 And remove any package you want with::
799
800 pip uninstall <package_name>
801
802 If you've used ``make check-acceptance``, the Python virtual environment where
803 Avocado is installed will be cleaned up as part of ``make check-clean``.
804
805 Testing with "make check-tcg"
806 =============================
807
808 The check-tcg tests are intended for simple smoke tests of both
809 linux-user and softmmu TCG functionality. However to build test
810 programs for guest targets you need to have cross compilers available.
811 If your distribution supports cross compilers you can do something as
812 simple as::
813
814 apt install gcc-aarch64-linux-gnu
815
816 The configure script will automatically pick up their presence.
817 Sometimes compilers have slightly odd names so the availability of
818 them can be prompted by passing in the appropriate configure option
819 for the architecture in question, for example::
820
821 $(configure) --cross-cc-aarch64=aarch64-cc
822
823 There is also a ``--cross-cc-flags-ARCH`` flag in case additional
824 compiler flags are needed to build for a given target.
825
826 If you have the ability to run containers as the user you can also
827 take advantage of the build systems "Docker" support. It will then use
828 containers to build any test case for an enabled guest where there is
829 no system compiler available. See :ref: `_docker-ref` for details.
830
831 Running subset of tests
832 -----------------------
833
834 You can build the tests for one architecture::
835
836 make build-tcg-tests-$TARGET
837
838 And run with::
839
840 make run-tcg-tests-$TARGET
841
842 Adding ``V=1`` to the invocation will show the details of how to
843 invoke QEMU for the test which is useful for debugging tests.
844
845 TCG test dependencies
846 ---------------------
847
848 The TCG tests are deliberately very light on dependencies and are
849 either totally bare with minimal gcc lib support (for softmmu tests)
850 or just glibc (for linux-user tests). This is because getting a cross
851 compiler to work with additional libraries can be challenging.
852
853 Other TCG Tests
854 ---------------
855
856 There are a number of out-of-tree test suites that are used for more
857 extensive testing of processor features.
858
859 KVM Unit Tests
860 ~~~~~~~~~~~~~~
861
862 The KVM unit tests are designed to run as a Guest OS under KVM but
863 there is no reason why they can't exercise the TCG as well. It
864 provides a minimal OS kernel with hooks for enabling the MMU as well
865 as reporting test results via a special device::
866
867 https://git.kernel.org/pub/scm/virt/kvm/kvm-unit-tests.git
868
869 Linux Test Project
870 ~~~~~~~~~~~~~~~~~~
871
872 The LTP is focused on exercising the syscall interface of a Linux
873 kernel. It checks that syscalls behave as documented and strives to
874 exercise as many corner cases as possible. It is a useful test suite
875 to run to exercise QEMU's linux-user code::
876
877 https://linux-test-project.github.io/