From 6c2d2d7e6c298f0e78646a8f96065d874ee6cfe1 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 4 May 2015 20:55:37 +1000 Subject: [PATCH] test: re-order the tests to have the likely ones to fail first Run the touchpad tests first, it's the most likely to fail. It also takes the longest, so it's annoying to have it fail when you spent a minute watching the other tests succeed. Signed-off-by: Peter Hutterer Reviewed-by: Hans de Goede --- test/Makefile.am | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index a90fa78a..0df89b2c 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -40,16 +40,16 @@ liblitest_la_SOURCES = \ liblitest_la_LIBADD = $(top_builddir)/src/libinput-util.la run_tests = \ - test-udev \ - test-path \ + test-touchpad \ + test-device \ test-pointer \ test-touch \ - test-log \ - test-touchpad \ test-trackpoint \ + test-udev \ + test-path \ + test-log \ test-misc \ - test-keyboard \ - test-device + test-keyboard build_tests = \ test-build-cxx \ test-build-linker \