cppcheck/gui/test
Aleksandr Pikalev e92bbf6481 Fixed #7275 - Make GUI tests buildable
* Use -std=c++11 flag for gcc and clang
 * Use $$PWD variable in qmake files to have correct paths
 * Change tokenizer.simplifyTokenList() to tokenizer.simplifyTokenList2()
 * Add build-generated files to .gitignore
 * Link libpcre only if rules are enabled
2016-01-08 15:21:36 +01:00
..
benchmark Fixed #7275 - Make GUI tests buildable 2016-01-08 15:21:36 +01:00
data Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
filelist Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
projectfile Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
translationhandler Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
xmlreport Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
xmlreportv1 Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
xmlreportv2 Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
common.pri Fixed #7275 - Make GUI tests buildable 2016-01-08 15:21:36 +01:00
readme.txt GUITESTS: Remove the running script. 2011-08-12 00:13:29 +03:00
test.pro BENCHMARKS: Add simple benchmark. 2011-06-22 22:24:49 +03:00

readme.txt

GUI tests + benchmark tests
===========================

As the GUI uses Qt framework, the GUI tests also use Qt's Testlib. This is
totally different test framework than lib/cli is using. By principle each
testcase is compiled as an own runnable binary.

Compiling
---------

To compile all the tests run in root directory of tests:
 - qmake ; make

You can also (re)compile single test by CD:ing to the directory where test
(source) resides and running:
 - qmake ; make

Running
-------

As each test is compiled as single executable binary you can run the test just
by running the executable.

You can get from
 http://bitbucket.org/kimmov/testrun
a script which runs all the tests and collects the results.