From 3ef6fc72fc9c4789507d537715597c3ed987f20e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Wed, 21 Dec 2005 10:42:55 +0000 Subject: a short readme on what this is svn path=/trunk/externals/zexy/; revision=4270 --- tests/README.txt | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 tests/README.txt diff --git a/tests/README.txt b/tests/README.txt new file mode 100644 index 0000000..532fd50 --- /dev/null +++ b/tests/README.txt @@ -0,0 +1,66 @@ +regression test framework +========================= + +this is a simple framework for regression tests for pd-objects + +HOW TESTS WORK: +--------------- +each test is a patch with one (1) inlet and one (1) outlet. +a bang is sent to the inlet to start the test. +the test has to send "1" to the outlet if the test succeeded. +any other result (be it !=1 or no result at all will be +considered a failure of the test. + +example tests of [==]: + +test1: + [inlet] + | + [10 10( + | + [==] + | + [outlet] + +test2: + [inlet] + | + [10 10.1( + | + [==] + | + [select 0] + | + [1( + | + [outlet] + + +HOW THE FRAMEWORK WORKS +----------------------- +only .pd-files in one-level-subdirectories are considered tests. +(e.g. ./subdir/patch1.pd is tested, while ./patch2.pd and +./sub/dir/patch3.pd are not taken into account) +see directory layout below +at the beginning of the testrun a file "runtests.txt" is generated +which contains all test-patches, one per line and each line +terminated by semicolon. +then pd is started and "runtests.txt" is read (via [textfile]). +for each line in the file, an object is created, a bang is +sent to the object and the result is received and compared with "1". +a result-message is printed. +when all the tests have been run, a summary of how many tests have +been run (and how many tests have been run successfully), and pd quits. +printout is first done into a logfile "runtests.log". +this logfile is printed to the stdout after pd quit. + + +CAVEATS +======= + no testing of signal objects + no testing of timed objects + + + + + -- cgit v1.2.1