Moved manual tests to separate directory.

This allows publishing autotests. Git export attributes changed
accordingly.

Change-Id: I6db2eb52dabdb8f12e0bc2a992a873abfa15b1a5
Reviewed-by: Titta Heikkala <titta.heikkala@theqtcompany.com>
This commit is contained in:
Miikka Heikkinen 2014-11-11 12:17:45 +02:00
parent c6ed50e684
commit 69f73db4ec
146 changed files with 740 additions and 733 deletions

1
.gitattributes vendored
View File

@ -2,5 +2,4 @@
.gitignore export-ignore .gitignore export-ignore
.gitattributes export-ignore .gitattributes export-ignore
.commit-template export-ignore .commit-template export-ignore
tests export-ignore
tools export-ignore tools export-ignore

2
tests/.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
.gitattributes export-ignore
manual export-ignore

View File

@ -1,4 +1,4 @@
!include( ../tests.pri ) { !include( ../../tests.pri ) {
error( "Couldn't find the test.pri file!" ) error( "Couldn't find the test.pri file!" )
} }

View File

@ -1,4 +1,6 @@
!include( ../tests.pri ):error( "Couldn't find the tests.pri file!" ) !include( ../../tests.pri ) {
error( "Couldn't find the test.pri file!" )
}
include(charts/charts.pri) include(charts/charts.pri)
TARGET = chartviewer TARGET = chartviewer
QT += opengl QT += opengl

View File

@ -1,4 +1,4 @@
!include( ../tests.pri ) { !include( ../../tests.pri ) {
error( "Couldn't find the test.pri file!" ) error( "Couldn't find the test.pri file!" )
} }

18
tests/manual/manual.pro Normal file
View File

@ -0,0 +1,18 @@
TEMPLATE = subdirs
SUBDIRS += \
presenterchart \
polarcharttest \
boxplottester
contains(QT_CONFIG, opengl) {
SUBDIRS += chartwidgettest \
wavechart \
chartviewer
} else {
message("OpenGL not available. Some test apps are disabled")
}
qtHaveModule(quick) {
SUBDIRS += qmlchartproperties \
qmlchartaxis
}

View File

@ -1,4 +1,4 @@
!include( ../tests.pri ) { !include( ../../tests.pri ) {
error( "Couldn't find the test.pri file!" ) error( "Couldn't find the test.pri file!" )
} }

View File

@ -1,6 +1,7 @@
!include( ../tests.pri ) { !include( ../../tests.pri ) {
error( "Couldn't find the examples.pri file!" ) error( "Couldn't find the test.pri file!" )
} }
TARGET = presenterchart TARGET = presenterchart
HEADERS += chartview.h HEADERS += chartview.h
SOURCES += main.cpp chartview.cpp SOURCES += main.cpp chartview.cpp

Some files were not shown because too many files have changed in this diff Show More