tests/vm: call make check directly for netbsd/freebsd/ubuntu.i386
authorAlex Bennée <alex.bennee@linaro.org>
Mon, 21 Jan 2019 16:34:35 +0000 (16:34 +0000)
committerAlex Bennée <alex.bennee@linaro.org>
Fri, 8 Feb 2019 17:32:35 +0000 (17:32 +0000)
The "make check" target calls check-qtest which has the appropriate
system binaries as dependencies so we shouldn't need to do two steps
of make invocation. Doing it in two steps was a hangover from when our
make check couldn't run tests in parallel.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
tests/vm/freebsd
tests/vm/netbsd
tests/vm/ubuntu.i386

index 19a37291723eed122850cd1c3a312a7142a69e6a..a85c866c3043cf18bf1170bc2adcdc0e4f9a5737 100755 (executable)
@@ -25,7 +25,6 @@ class FreeBSDVM(basevm.BaseVM):
         cd $(mktemp -d /var/tmp/qemu-test.XXXXXX);
         tar -xf /dev/vtbd1;
         ./configure {configure_opts};
-        gmake --output-sync -j{jobs} {verbose};
         gmake --output-sync -j{jobs} check {verbose};
     """
 
index fac6a7ce51cf7d3930e98c546aa352824241031e..edea113bb5543ccea69e22c27877e16930cfe247 100755 (executable)
@@ -25,7 +25,6 @@ class NetBSDVM(basevm.BaseVM):
         cd $(mktemp -d /var/tmp/qemu-test.XXXXXX);
         tar -xf /dev/rld1a;
         ./configure --python=python2.7 {configure_opts};
-        gmake --output-sync -j{jobs} {verbose};
         gmake --output-sync -j{jobs} check {verbose};
     """
 
index 1b7e1ab8f0c615971de4b3dc58f638c56cf843af..252e5148591b319491009fed69f9d292a1c0d2f2 100755 (executable)
@@ -26,7 +26,6 @@ class UbuntuX86VM(basevm.BaseVM):
         sudo chmod a+r /dev/vdb;
         tar -xf /dev/vdb;
         ./configure {configure_opts};
-        make --output-sync -j{jobs};
         make --output-sync check -j{jobs} {verbose};
     """