From: Kornel Benko Date: Wed, 3 Sep 2014 10:35:40 +0000 (+0200) Subject: Cmake tests: Set also correct sequence of tests again. X-Git-Tag: 2.2.0alpha1~1680 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2df6340c1cd0b95c93b92d1eff5821c48e7c6db9;p=features.git Cmake tests: Set also correct sequence of tests again. --- diff --git a/development/autotests/CMakeLists.txt b/development/autotests/CMakeLists.txt index 3dd4213842..0ad195f71c 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})