Code Monkey home page Code Monkey logo

qmaketestrunner's People

Contributors

giraldeau avatar mirkoboehm avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

giraldeau

qmaketestrunner's Issues

Running individual tests

It's common to run only one test for development purposes. The way to specify tests to run is to pass them as arguments to QTest. The following example would run only testFoo from tst_something:

./tst_something testFoo

The test can be passed with TESTARGS variable.

cd subtestdir/
make check TESTARGS="testFoo"

Of course, this is not working properly if LD_LIBRARY_PATH is required, such that QMakeTestRunner is required. There are couple of issues

First, the variable TESTARGS is not forwarded to the underlying check command, and then it's not possible to run only one test.

Also, when specifying TESTARGS at top-level, every tests are called with the same arguments, and since testFoo may be defined in only one test class, it fails to find the test function.

Then, while make check works in subproject, make test target is undefined:

cd mysubtestdir/
make test TESTARGS="testFoo"
make: *** No rule to make target `test'.  Stop.

One solution would be to create a test-shell target that spawns a shell with correct environment, then the dev could run individual test under subdirectory or with make check. (a bit like virtualenv does, or the django shell).

This solution won't fit well under qtcreator. Could it be possible de define variables such that CTRL-R would run only one test under QMakeTestRunner?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.