Files
Dmitriy Anisimkov 90898b6fb5 Fix 0236_snb_send rare regression
T921-008

Increase timeout and remove it from error message.
2020-09-27 23:56:42 +06:00
..
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2019-01-23 17:53:54 +01:00
2012-02-24 09:42:42 +07:00
2019-01-23 17:53:54 +01:00
2014-03-26 08:58:43 +01:00
2012-01-03 18:55:45 +01:00
2012-02-10 12:20:14 +07:00
2012-02-10 12:20:14 +07:00
2012-02-10 12:20:14 +07:00
2012-01-03 18:55:45 +01:00
2012-02-09 18:30:33 +07:00
2012-02-09 18:30:33 +07:00
2012-01-03 18:55:45 +01:00
2017-07-24 18:25:34 +06:00
2012-01-03 18:55:45 +01:00
2012-02-10 18:30:56 +07:00
2012-02-24 09:42:42 +07:00
2012-02-10 12:20:14 +07:00
2012-02-24 09:42:42 +07:00
2012-03-05 12:44:36 +07:00
2012-01-03 18:55:45 +01:00
2012-02-24 08:57:48 +07:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2015-01-18 10:14:05 +01:00
2017-01-24 17:58:24 +01:00
2012-01-03 18:55:45 +01:00
2012-02-11 03:23:46 +07:00
2018-11-17 15:19:31 +01:00
2012-02-27 00:39:36 +07:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2015-05-25 10:07:43 +02:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-02-16 01:20:48 +07:00
2012-01-03 18:55:45 +01:00
2012-02-15 17:55:31 +07:00
2012-02-15 17:55:31 +07:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-02-14 01:09:39 +07:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-02-11 03:23:46 +07:00
2012-02-11 03:23:46 +07:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2016-01-02 00:28:03 +06:00
2020-06-25 23:32:09 +06:00
2014-06-07 18:04:31 +02:00
2019-01-23 17:53:54 +01:00
2019-01-23 17:53:54 +01:00
2019-01-23 17:53:54 +01:00
2016-09-28 21:14:26 +06:00
2017-02-09 19:48:28 +01:00
2019-02-08 16:06:20 +06:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-05-22 12:27:21 +02:00

AWS Testsuite
=============

You'll need GNATPython to run the testsuite.
To use it:

git clone https://forge.open-do.org/anonscm/git/gnatpython/gnatpython.git

Then install it in your python distribution (./setup.py install) or
export PYTHONPATH=/path/to/gnatpython and compile
gnatpython/src/rlimit/rlimit.c (or rlimit-NT.c if you are on a windows machine)
and add it to your PATH.

Before running the testsuite, you need to run 'make setup' in AWS
root directory.

To run the testsuite with N jobs in parallel and to show error messages,
run:

./testsuite.py -j N --diff

All results are stored in the 'out' directory by default.

To run only the 0001_turl tests:

./testsuite.py -j N --diff 0001_turl

A report is created in out/report.

See ./testsuite.py -h for more help

How to add a new test
=====================

To add a new test, create a new directory xxx_name with a test.py and
a test.out

The test.py should start with:

"from test_support import *"

then you can use all test_support.py functions.