qemu-e2k/tests/tcg
Eric Blake 2562755ee7 maint: Fix macros with broken 'do/while(0); ' usage
The point of writing a macro embedded in a 'do { ... } while (0)'
loop (particularly if the macro has multiple statements or would
otherwise end with an 'if' statement) is so that the macro can be
used as a drop-in statement with the caller supplying the
trailing ';'.  Although our coding style frowns on brace-less 'if':
  if (cond)
    statement;
  else
    something else;
that is the classic case where failure to use do/while(0) wrapping
would cause the 'else' to pair with any embedded 'if' in the macro
rather than the intended outer 'if'.  But conversely, if the macro
includes an embedded ';', then the same brace-less coding style
would now have two statements, making the 'else' a syntax error
rather than pairing with the outer 'if'.  Thus, even though our
coding style with required braces is not impacted, ending a macro
with ';' makes our code harder to port to projects that use
brace-less styles.

The change should have no semantic impact.  I was not able to
fully compile-test all of the changes (as some of them are
examples of the ugly bit-rotting debug print statements that are
completely elided by default, and I didn't want to recompile
with the necessary -D witnesses - cleaning those up is left as a
bite-sized task for another day); I did, however, audit that for
all files touched, all callers of the changed macros DID supply
a trailing ';' at the callsite, and did not appear to be used
as part of a brace-less conditional.

Found mechanically via: $ git grep -B1 'while (0);' | grep -A1 \\\\

Signed-off-by: Eric Blake <eblake@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20171201232433.25193-7-eblake@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2018-01-16 14:54:52 +01:00
..
alpha tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
cris tests: Avoid non-portable 'echo -ARG' 2017-07-11 17:45:00 +02:00
lm32 test: lm32: use semihosting for testing 2014-05-24 19:42:29 +02:00
mips target-mips: correct the values in the DSP tests 2013-07-30 17:48:24 +02:00
openrisc target/openrisc: Rename the cpu from or32 to or1k 2017-02-14 08:14:58 +11:00
xtensa target/xtensa: tests: fix memctl SR test 2018-01-09 09:55:38 -08:00
Makefile tests/tcg: Fix compilation of test_path 2014-05-07 21:00:43 +04:00
README qemu-tech: move TCG test documentation to tests/tcg/README 2016-10-07 10:05:30 +02:00
hello-arm.c tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
hello-i386.c tests/tcg: fix a few warnings 2012-10-27 14:37:25 +00:00
hello-mips.c tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
linux-test.c util: move declarations out of qemu-common.h 2016-03-22 22:20:17 +01:00
pi_10.com tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
runcom.c tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
sha1.c tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
test-arm-iwmmxt.s tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
test-i386-code16.S tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
test-i386-fprem.c Clean up includes some more 2016-03-22 22:20:16 +01:00
test-i386-muldiv.h tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
test-i386-shift.h tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
test-i386-ssse3.c tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
test-i386-vm86.S tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
test-i386.c Replace 'struct ucontext' with 'ucontext_t' type 2017-07-20 10:10:28 +01:00
test-i386.h tests: mv tests/* -> tests/tcg 2012-01-12 10:03:28 -06:00
test-mmap.c maint: Fix macros with broken 'do/while(0); ' usage 2018-01-16 14:54:52 +01:00
test_path.c tests/tcg: Fix compilation of test_path 2014-05-07 21:00:43 +04:00
testthread.c maint: remove unused include for signal.h 2015-09-11 10:21:38 +03:00

README

This directory contains various interesting programs for
regression testing.

The target "make test" runs the programs and, if applicable,
runs "diff" to detect mismatches between output on the host and
output on QEMU.

i386
====

test-i386
---------

This program executes most of the 16 bit and 32 bit x86 instructions and
generates a text output, for comparison with the output obtained with
a real CPU or another emulator.

The Linux system call modify_ldt() is used to create x86 selectors
to test some 16 bit addressing and 32 bit with segmentation cases.

The Linux system call vm86() is used to test vm86 emulation.

Various exceptions are raised to test most of the x86 user space
exception reporting.

linux-test
----------

This program tests various Linux system calls. It is used to verify
that the system call parameters are correctly converted between target
and host CPUs.

test-i386-fprem
---------------

runcom
------

test-mmap
---------

sha1
----

hello-i386
----------


ARM
===

hello-arm
---------

test-arm-iwmmxt
---------------

MIPS
====

hello-mips
----------

hello-mipsel
------------

CRIS
====
The testsuite for CRIS is in tests/tcg/cris.  You can run it
with "make test-cris".

LM32
====
The testsuite for LM32 is in tests/tcg/cris.  You can run it
with "make test-lm32".