summaryrefslogtreecommitdiff
path: root/test/integration/run-tests
Commit message (Collapse)AuthorAgeFilesLines
* tests: enhance output of grep and test failsDavid Kalnischkies2014-10-261-1/+5
| | | | Git-Dch: Ignore
* detect terminal output with 'test -t' in testsDavid Kalnischkies2014-09-071-1/+1
| | | | | | | | Instead of trying to inspect /proc and the fds inside we use "test -t 1" instead as this is available and working on kfreebsd as well – not that something breaks if we wouldn't, but we like color. Git-Dch: Ignore
* use printf instead of echo in testing frameworkMichele Orrù2014-07-071-2/+2
| | | | | | | | | The behaviour of echo "\tA\t" differs between dash/zsh which interprets the \t as tab and bash which prints it literally. Similar things happen for other escape sequences – without the -e flag. Switching to printf makes this more painless^Wportable, so that the tests are also working correctly with bash as sh. (commit message by committer, patch otherwise unmodified)
* show current/total testcase statistic also in concise modeDavid Kalnischkies2014-05-301-1/+1
| | | | Git-Dch: Ignore
* show progress in run-testsMichael Vogt2014-05-071-1/+2
|
* get color/msglevel handling for tests in lineDavid Kalnischkies2014-01-171-12/+23
| | | | | | | | | Without a PTY attached do not use color, but use the same MSGLEVEL with or without a PTY. The level is better adjust via flags – especially as it is likely that without a PTY you want fullblown logs instead of the reduced display you get with -q otherwise. Git-Dch: Ignore
* improve stdout/stderr usage correctness in test frameworkDavid Kalnischkies2014-01-171-7/+15
| | | | | | | | Also adds a friendly note about how many tests were run/passed so that the end of the testrun isn't all that negative by just showing fails. (It now tells us that we have 111 tests at the moment!) Git-Dch: Ignore
* test/integration/run-tests: output the failed test namesMichael Vogt2013-10-221-0/+5
|
* report failures via exit and ensure we don't overflowMichael Vogt2013-03-181-1/+2
|
* set the msglevel to a high dummy value if none is specifiedDavid Kalnischkies2011-08-171-0/+4
|
* do not output color in the testcases if stdout/stderr are not a /dev/ptsDavid Kalnischkies2011-08-171-4/+13
|
* test/integration/: remove a bunch of "local" statements from the ↵Michael Vogt2011-02-151-1/+8
| | | | shellscript, keep tests running even on failure but log failures
* enable the split out of LongDescriptions per default in the testcasesDavid Kalnischkies2011-01-251-1/+1
|
* implement i quiet run-tests mode which prints only one line per testcaseDavid Kalnischkies2011-01-161-1/+13
|
* tests/integration/test-*: remove a bunch of "local" that are used outside ↵Michael Vogt2010-10-131-1/+1
| | | | funtions (bash complains)
* - prefer non-virtual packages in FindPreferredPkg (Closes: #590041)David Kalnischkies2010-07-251-0/+8
* test/integration/*: - add with bug#590041 testcase a small test "framework"