Browse Source

Autogen: Test: Rename automoc_rerun test to mocRerun

Sebastian Holtermann 8 years ago
parent
commit
89780663b3

+ 7 - 7
Tests/QtAutogen/CMakeLists.txt

@@ -119,26 +119,26 @@ endif()
 # -- Test
 # Ensure a repeated build succeeds when a header containing a QObject changes
 try_compile(MOC_RERUN
-  "${CMAKE_CURRENT_BINARY_DIR}/automoc_rerun"
-  "${CMAKE_CURRENT_SOURCE_DIR}/automoc_rerun"
-  automoc_rerun
+  "${CMAKE_CURRENT_BINARY_DIR}/mocRerun"
+  "${CMAKE_CURRENT_SOURCE_DIR}/mocRerun"
+  mocRerun
   CMAKE_FLAGS "-DQT_QMAKE_EXECUTABLE:FILEPATH=${QT_QMAKE_EXECUTABLE}"
               "-DQT_TEST_VERSION=${QT_TEST_VERSION}"
               "-DCMAKE_PREFIX_PATH=${Qt_PREFIX_DIR}"
   OUTPUT_VARIABLE output
 )
 if (NOT MOC_RERUN)
-  message(SEND_ERROR "Initial build of automoc_rerun failed. Output: ${output}")
+  message(SEND_ERROR "Initial build of mocRerun failed. Output: ${output}")
 endif()
 
-configure_file(automoc_rerun/test1.h.in2 automoc_rerun/test1.h COPYONLY)
+configure_file(mocRerun/test1b.h.in mocRerun/test1.h COPYONLY)
 
 execute_process(COMMAND "${CMAKE_COMMAND}" --build .
-  WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/automoc_rerun"
+  WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/mocRerun"
   RESULT_VARIABLE automoc_rerun_result
   )
 if (automoc_rerun_result)
-  message(SEND_ERROR "Second build of automoc_rerun failed.")
+  message(SEND_ERROR "Second build of mocRerun failed.")
 endif()
 
 # -- Test

+ 2 - 2
Tests/QtAutogen/automoc_rerun/CMakeLists.txt → Tests/QtAutogen/mocRerun/CMakeLists.txt

@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.7)
-project(automoc_rerun CXX)
+project(mocRerun CXX)
 
 if (QT_TEST_VERSION STREQUAL 4)
   find_package(Qt4 REQUIRED)
@@ -16,7 +16,7 @@ endif()
 set(CMAKE_AUTOMOC ON)
 set(CMAKE_AUTORCC ON)
 
-configure_file(test1.h.in1 test1.h COPYONLY)
+configure_file(test1a.h.in test1.h COPYONLY)
 
 add_executable(test1
   ${CMAKE_CURRENT_BINARY_DIR}/test1.h

+ 0 - 0
Tests/QtAutogen/automoc_rerun/input.txt → Tests/QtAutogen/mocRerun/input.txt


+ 0 - 0
Tests/QtAutogen/automoc_rerun/res1.qrc → Tests/QtAutogen/mocRerun/res1.qrc


+ 0 - 0
Tests/QtAutogen/automoc_rerun/test1.cpp → Tests/QtAutogen/mocRerun/test1.cpp


+ 0 - 0
Tests/QtAutogen/automoc_rerun/test1.h.in1 → Tests/QtAutogen/mocRerun/test1a.h.in


+ 0 - 0
Tests/QtAutogen/automoc_rerun/test1.h.in2 → Tests/QtAutogen/mocRerun/test1b.h.in