Files
Pascal Obry 0da4e06bcf Merge branch 'po/client-http2'
* po/client-http2:
  First implementation of the client GET/POST methods with HTTP/2.
  Minor code refactoring to prepare HTTP/2 client support.
  Add Append_Body version for a Response message.
  Add Append version for a Response message in Data frame.
  Add Create routine for a request message.
  Add support for retreiving the GoAway error code.
  Add support for Stream.Data_Fow to report current data direction.
  Minor code clean-up.
2021-09-17 18:59:46 +02: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
2021-02-15 18:23:23 +06:00
2012-02-24 09:42:42 +07: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
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
2021-02-15 18:23:23 +06:00
2012-01-03 18:55:45 +01:00
2012-02-11 03:23:46 +07: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
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
2021-01-13 20:29:54 +06:00
2014-06-07 18:04:31 +02: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
2020-12-15 21:27:56 +06:00
2021-07-27 16:44:15 +02: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.