commit 2df6340c1cd0b95c93b92d1eff5821c48e7c6db9
Author: Kornel Benko <[email protected]>
Date: Wed Sep 3 12:35:40 2014 +0200
Cmake tests: Set also correct sequence of tests again.
diff --git a/development/autotests/CMakeLists.txt
b/development/autotests/CMakeLists.txt
index 3dd4213..0ad195f 100644
--- a/development/autotests/CMakeLists.txt
+++ b/development/autotests/CMakeLists.txt
@@ -78,11 +78,12 @@ if(QT_USES_X11)
set(KEYTEST "${CMAKE_CURRENT_SOURCE_DIR}/keytest.py")
file(GLOB TESTST RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*-in.txt")
file(GLOB TESTSS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*-in.sh")
- set(_firsttxt hello-world-in.txt first-time-in.txt)
+ set(_firsttxt first-time-in.txt hello-world-in.txt)
foreach(_f ${_firsttxt})
list(FIND TESTST ${_f} _ff)
if(NOT _ff GREATER -1)
set(_runtest FALSE)
+ break()
endif()
endforeach()
list(REMOVE_ITEM TESTST ${_firsttxt})