Files
aws/regtests
Pascal Obry 2304cd3a21 Ensure that the AWS version is always ending with vx.x.
This makes this test more stable across all version naming.

For RC11-007 & U726-036.
2021-07-27 12:45:43 +02:00
..
2012-02-24 09:42:42 +07:00
2014-03-26 08:58:43 +01:00
2017-07-24 18:25:34 +06:00
2012-02-24 09:42:42 +07:00
2012-02-24 09:42:42 +07:00
2012-02-16 01:20:48 +07:00
2012-03-05 12:44:36 +07:00
2012-02-24 08:57:48 +07:00
2015-01-18 10:14:05 +01:00
2017-01-24 17:58:24 +01:00
2012-02-27 00:39:36 +07:00
2015-05-25 10:07:43 +02:00
2012-02-16 01:20:48 +07:00
2016-01-02 00:28:03 +06:00
2014-06-07 18:04:31 +02:00
2014-04-07 22:16:47 +02:00
2016-09-28 21:14:26 +06:00
2017-02-09 19:48:28 +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.