Uploaded image for project: 'Qt Creator'
  1. Qt Creator
  2. QTCREATORBUG-17147

Building subproject auto test via project explorer context menu causes entire top-level module to be built within auto test directory

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • P1: Critical
    • Qt Creator 4.3.0-rc1
    • Qt Creator 4.1.0, Qt Creator 4.3.0-beta1
    • None
    • Ubuntu 16.04
      Creator 4.1.0

    Description

      Steps to reproduce:

      1. Open qtquickcontrols2.pro (I'm using dev branch, shadow build)
      2. Build it
      3. Right click on accessibility auto test under tests > auto, click build
      4. It will do the classic "I'm going to build everything because screw you" that we're currently working around... even though I'm asking it to build a subproject, whose parent project has already been built. It proceeds to do that build inside the accessibility directory, duplicating the qtquickcontrols2 build.

      That is to say, the build directory contains the following:

      mitch@mitch-ubuntu:~/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility$ ls
      examples  Makefile  src  target_wrapper.sh  tests
      

      When it should contain something like:

      mitch@mitch-ubuntu:~/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility$ ls
      Makefile tst_accessibility
      

      I configured Qt with:

      -developer-build -nomake tests -nomake examples
      

      Attached is the Makefile for tests/auto/accessibility.

      Compile output when building the subproject (truncated for brevity):

      10:35:38: Running steps for project qtquickcontrols2...
      10:35:38: Starting: "/home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake" /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/accessibility/accessibility.pro -spec linux-g++ /home/mitch/dev/qt5-dev/qtquickcontrols2/qtquickcontrols2.pro
      Info: creating cache file /home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/.qmake.cache
      10:35:39: The process "/home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake" exited normally.
      10:35:39: Starting: "/usr/bin/make" qmake_all
      cd src/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/src.pro -spec linux-g++
      cd src/ && /usr/bin/make -f Makefile qmake_all
      make[1]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src'
      cd quicktemplates2/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/quicktemplates2.pro -spec linux-g++
      <srcbase> = /home/mitch/dev/qt5-dev/qtquickcontrols2 
      <outbase> = /home/mitch/dev/qt5-dev-debug/qtbase 
      cd quicktemplates2/ && /usr/bin/make -f Makefile qmake_all
      make[2]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/quicktemplates2'
      make[2]: Nothing to be done for 'qmake_all'.
      make[2]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/quicktemplates2'
      cd quickcontrols2/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quickcontrols2/quickcontrols2.pro -spec linux-g++
      <srcbase> = /home/mitch/dev/qt5-dev/qtquickcontrols2 
      <outbase> = /home/mitch/dev/qt5-dev-debug/qtbase 
      cd quickcontrols2/ && /usr/bin/make -f Makefile qmake_all
      make[2]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/quickcontrols2'
      make[2]: Nothing to be done for 'qmake_all'.
      make[2]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/quickcontrols2'
      cd imports/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/imports/imports.pro -spec linux-g++
      cd imports/ && /usr/bin/make -f Makefile qmake_all
      make[2]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports'
      cd controls/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/imports/controls/controls.pro -spec linux-g++
      cd controls/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/controls'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/controls'
      cd calendar/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/imports/calendar/calendar.pro -spec linux-g++
      cd calendar/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/calendar'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/calendar'
      cd platform/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/imports/platform/platform.pro -spec linux-g++
      cd platform/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/platform'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/platform'
      cd templates/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/imports/templates/templates.pro -spec linux-g++
      cd templates/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/templates'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/templates'
      cd controls/material/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/imports/controls/material/material.pro -spec linux-g++
      cd controls/material/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/controls/material'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/controls/material'
      cd controls/universal/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/imports/controls/universal/universal.pro -spec linux-g++
      cd controls/universal/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/controls/universal'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports/controls/universal'
      make[2]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/imports'
      make[1]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src'
      cd examples/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/examples.pro -spec linux-g++
      cd examples/ && /usr/bin/make -f Makefile qmake_all
      make[1]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples'
      cd quickcontrols2/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/quickcontrols2/quickcontrols2.pro -spec linux-g++
      cd quickcontrols2/ && /usr/bin/make -f Makefile qmake_all
      make[2]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2'
      cd gallery/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/quickcontrols2/gallery/gallery.pro -spec linux-g++
      cd gallery/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/gallery'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/gallery'
      cd chattutorial/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/quickcontrols2/chattutorial/chattutorial.pro -spec linux-g++
      cd chattutorial/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial'
      cd chapter1-settingup/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/quickcontrols2/chattutorial/chapter1-settingup/chapter1-settingup.pro -spec linux-g++
      cd chapter1-settingup/ && /usr/bin/make -f Makefile qmake_all
      make[4]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter1-settingup'
      make[4]: Nothing to be done for 'qmake_all'.
      make[4]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter1-settingup'
      cd chapter2-lists/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/quickcontrols2/chattutorial/chapter2-lists/chapter2-lists.pro -spec linux-g++
      cd chapter2-lists/ && /usr/bin/make -f Makefile qmake_all
      make[4]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter2-lists'
      make[4]: Nothing to be done for 'qmake_all'.
      make[4]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter2-lists'
      cd chapter3-navigation/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/quickcontrols2/chattutorial/chapter3-navigation/chapter3-navigation.pro -spec linux-g++
      cd chapter3-navigation/ && /usr/bin/make -f Makefile qmake_all
      make[4]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter3-navigation'
      make[4]: Nothing to be done for 'qmake_all'.
      make[4]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter3-navigation'
      cd chapter4-models/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/quickcontrols2/chattutorial/chapter4-models/chapter4-models.pro -spec linux-g++
      cd chapter4-models/ && /usr/bin/make -f Makefile qmake_all
      make[4]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter4-models'
      make[4]: Nothing to be done for 'qmake_all'.
      make[4]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter4-models'
      cd chapter5-styling/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/quickcontrols2/chattutorial/chapter5-styling/chapter5-styling.pro -spec linux-g++
      cd chapter5-styling/ && /usr/bin/make -f Makefile qmake_all
      make[4]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter5-styling'
      make[4]: Nothing to be done for 'qmake_all'.
      make[4]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial/chapter5-styling'
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/chattutorial'
      cd texteditor/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/examples/quickcontrols2/texteditor/texteditor.pro -spec linux-g++
      cd texteditor/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/texteditor'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2/texteditor'
      make[2]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples/quickcontrols2'
      make[1]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/examples'
      cd tests/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/tests.pro -spec linux-g++
      cd tests/ && /usr/bin/make -f Makefile qmake_all
      make[1]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests'
      cd auto/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/auto.pro -spec linux-g++
      cd auto/ && /usr/bin/make -f Makefile qmake_all
      make[2]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto'
      cd accessibility/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/accessibility/accessibility.pro -spec linux-g++
      cd accessibility/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/accessibility'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/accessibility'
      cd applicationwindow/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/applicationwindow/applicationwindow.pro -spec linux-g++
      cd applicationwindow/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/applicationwindow'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/applicationwindow'
      cd calendar/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/calendar/calendar.pro -spec linux-g++
      cd calendar/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/calendar'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/calendar'
      cd controls/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/controls/controls.pro -spec linux-g++
      cd controls/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/controls'
      cd default/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/controls/default/default.pro -spec linux-g++
      cd default/ && /usr/bin/make -f Makefile qmake_all
      make[4]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/controls/default'
      make[4]: Nothing to be done for 'qmake_all'.
      make[4]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/controls/default'
      cd material/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/controls/material/material.pro -spec linux-g++
      cd material/ && /usr/bin/make -f Makefile qmake_all
      make[4]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/controls/material'
      make[4]: Nothing to be done for 'qmake_all'.
      make[4]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/controls/material'
      cd universal/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/controls/universal/universal.pro -spec linux-g++
      cd universal/ && /usr/bin/make -f Makefile qmake_all
      make[4]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/controls/universal'
      make[4]: Nothing to be done for 'qmake_all'.
      make[4]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/controls/universal'
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/controls'
      cd drawer/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/drawer/drawer.pro -spec linux-g++
      cd drawer/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/drawer'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/drawer'
      cd menu/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/menu/menu.pro -spec linux-g++
      cd menu/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/menu'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/menu'
      cd platform/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/platform/platform.pro -spec linux-g++
      cd platform/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/platform'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/platform'
      cd popup/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/popup/popup.pro -spec linux-g++
      cd popup/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/popup'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/popup'
      cd pressandhold/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/pressandhold/pressandhold.pro -spec linux-g++
      cd pressandhold/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/pressandhold'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/pressandhold'
      cd qquickmaterialstyle/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/qquickmaterialstyle/qquickmaterialstyle.pro -spec linux-g++
      cd qquickmaterialstyle/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickmaterialstyle'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickmaterialstyle'
      cd qquickmaterialstyleconf/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/qquickmaterialstyleconf/qquickmaterialstyleconf.pro -spec linux-g++
      cd qquickmaterialstyleconf/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickmaterialstyleconf'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickmaterialstyleconf'
      cd qquickstyle/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/qquickstyle/qquickstyle.pro -spec linux-g++
      cd qquickstyle/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickstyle'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickstyle'
      cd qquickstyleselector/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/qquickstyleselector/qquickstyleselector.pro -spec linux-g++
      cd qquickstyleselector/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickstyleselector'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickstyleselector'
      cd qquickuniversalstyle/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/qquickuniversalstyle/qquickuniversalstyle.pro -spec linux-g++
      cd qquickuniversalstyle/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickuniversalstyle'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickuniversalstyle'
      cd qquickuniversalstyleconf/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/qquickuniversalstyleconf/qquickuniversalstyleconf.pro -spec linux-g++
      cd qquickuniversalstyleconf/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickuniversalstyleconf'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/qquickuniversalstyleconf'
      cd revisions/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/revisions/revisions.pro -spec linux-g++
      cd revisions/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/revisions'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/revisions'
      cd sanity/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/sanity/sanity.pro -spec linux-g++
      cd sanity/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/sanity'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/sanity'
      cd snippets/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/auto/snippets/snippets.pro -spec linux-g++
      cd snippets/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/snippets'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto/snippets'
      make[2]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/auto'
      cd benchmarks/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/benchmarks/benchmarks.pro -spec linux-g++
      cd benchmarks/ && /usr/bin/make -f Makefile qmake_all
      make[2]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/benchmarks'
      cd creationtime/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/benchmarks/creationtime/creationtime.pro -spec linux-g++
      cd creationtime/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/benchmarks/creationtime'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/benchmarks/creationtime'
      cd objectcount/ && /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/tests/benchmarks/objectcount/objectcount.pro -spec linux-g++
      cd objectcount/ && /usr/bin/make -f Makefile qmake_all
      make[3]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/benchmarks/objectcount'
      make[3]: Nothing to be done for 'qmake_all'.
      make[3]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/benchmarks/objectcount'
      make[2]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests/benchmarks'
      make[1]: Leaving directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/tests'
      10:35:49: The process "/usr/bin/make" exited normally.
      10:35:49: Starting: "/usr/bin/make" -j 8
      cd src/ && ( test -e Makefile || /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/src.pro -spec linux-g++ ) && /usr/bin/make -f Makefile 
      make[1]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src'
      cd quicktemplates2/ && ( test -e Makefile || /home/mitch/dev/qt5-dev-debug/qtbase/bin/qmake -o Makefile /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/quicktemplates2.pro -spec linux-g++ ) && /usr/bin/make -f Makefile 
      make[2]: Entering directory '/home/mitch/dev/qt5-dev-debug/qtquickcontrols2/tests/auto/accessibility/src/quicktemplates2'
      compiling /home/mitch/dev/qt5-dev-debug/qtbase/include/QtQuickTemplates2/QtQuickTemplates2Depends
      compiling /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/qquickabstractbutton.cpp
      generating .moc/moc_predefs.h
      compiling /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/qquickbusyindicator.cpp
      compiling /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/qquickbutton.cpp
      compiling /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/qquickcombobox.cpp
      compiling /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/qquickcheckbox.cpp
      compiling /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/qquickcontrol.cpp
      compiling /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/qquickcheckdelegate.cpp
      compiling /home/mitch/dev/qt5-dev/qtquickcontrols2/src/quicktemplates2/qquickdial.cpp
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            hunger Tobias Hunger
            mitch_curtis Mitch Curtis
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes