diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-10-10 17:56:11 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-10-28 15:12:38 +0000 |
commit | 1852f3e486fd64dc59043fff6e487537ded0bb72 (patch) | |
tree | faaf09dcd735efc633a15fb3d2ad81ebd841d031 /tests/tcg/Makefile.target | |
parent | 02f903140b777a6325fc4f83ddf1126f71efa38a (diff) | |
download | qemu-1852f3e486fd64dc59043fff6e487537ded0bb72.zip qemu-1852f3e486fd64dc59043fff6e487537ded0bb72.tar.gz qemu-1852f3e486fd64dc59043fff6e487537ded0bb72.tar.bz2 |
tests/tcg: move "virtual" tests to EXTRA_TESTS
Otherwise clever expanders like the plugins test get unstuck.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tests/tcg/Makefile.target')
-rw-r--r-- | tests/tcg/Makefile.target | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/tcg/Makefile.target b/tests/tcg/Makefile.target index 84abbd2..9664613 100644 --- a/tests/tcg/Makefile.target +++ b/tests/tcg/Makefile.target @@ -66,6 +66,8 @@ conditional-diff-out = \ # Tests we are building TESTS= +# additional tests which may re-use existing binaries +EXTRA_TESTS= # Start with a blank slate, the build targets get to add stuff first CFLAGS= @@ -109,7 +111,7 @@ else endif -all: $(TESTS) +all: $(TESTS) $(EXTRA_TESTS) # # Test Runners |