summaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/meson_test.py
Commit message (Collapse)AuthorAgeFilesLines
* All testing is now in mesontest.py, which simplifies a lot of stuff.Jussi Pakkanen2016-11-181-300/+0
|
* Made Meson test into a class rather than abusing global variables and as ↵Jussi Pakkanen2016-11-181-178/+174
| | | | preparation for moving it elsewhere.
* Run all tests if none are specified.Jussi Pakkanen2016-11-181-4/+5
|
* Use the same code for tests and benchmarks.Jussi Pakkanen2016-11-181-12/+28
|
* Removed Valgrind from core.Jussi Pakkanen2016-11-181-4/+1
|
* Use portable path separator in wrappers.Elliott Sales de Andrade2016-11-131-1/+2
| | | | | The semicolon only separates paths on Windows, but the wrapper is sometimes used on other platforms.
* Don't mention non-existing log files after testing.Hemmo Nieminen2016-10-191-1/+2
|
* Remove shebangs on files that are not runnable and add execute bits to those ↵Jussi Pakkanen2016-10-071-0/+0
| | | | that are.
* Add a new 'environment' object to be used to build test environment (#781)Thibault Saunier2016-09-141-0/+4
| | | Allowing user to fine tune tests environment variables
* meson_test: Add env variables to the test logs file (#767)Thibault Saunier2016-09-081-4/+9
| | | | So users can more easily reproduce the test without the launcher
* Use context manager for file I/O.Elliott Sales de Andrade2016-08-271-20/+25
| | | | | There are a few cases where a context manager cannot be used, such as the logger.
* meson_test: Fix a bug in valgrind argument handling.Hemmo Nieminen2016-06-061-3/+4
| | | | | | | Do not modify the wrap command argument from the calling function. Appending the valgrind arguments to the wrap list argument will cause all the valgrind arguments to cumulate from all the tests to the wrapper command itself.
* Fix a bug (typo) seen when printing the logs from failed tests. (#513)trhd2016-04-141-1/+1
|
* meson_test: Don't print logs from failing tests that are expected to fail.Hemmo Nieminen2016-04-011-3/+4
|
* meson_test: Add support for --print-errorlogs option.Hemmo Nieminen2016-04-011-34/+49
| | | | | This option can be used to control whether the logs from failing tests should be shown to the user after the tests have been executed.
* meson_test: Add support for --no-stdsplit option.Hemmo Nieminen2016-04-011-11/+17
|
* meson_test: Move "options" to a global variable.Hemmo Nieminen2016-04-011-3/+5
|
* Prevent state leaks when running tests in-process.Jussi Pakkanen2016-02-171-0/+1
|
* When killing a frozen process, take all its children with it. Closes #377.Jussi Pakkanen2016-02-141-3/+18
|
* Renamed meson package to mesonbuild so that we can have a script named meson ↵Jussi Pakkanen2016-01-161-0/+233
in the same toplevel dir.