Files
Pascal Obry 0f37994c02 Hotplug: Ensure the proper content type is passed to the hotplug module.
When transferring a request from the main server to the hotplug one
we must use the same Content-Type. Not doing that will fail to pass
the POST (application/x-www-form-urlencoded) parameters to the
hotplug module.

Add corresponding regression test.

TN eng/toolchain/aws#110
2025-12-24 14:48:48 +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-02-24 09:42:42 +07:00
2024-06-27 15:15:08 +00: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-02-10 12:20:14 +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
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
2021-11-16 17:13:01 +06: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-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2012-01-03 18:55:45 +01:00
2023-07-17 12:35:26 +00: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
2014-06-07 18:04:31 +02:00
2023-07-17 12:35:26 +00:00
2023-07-17 12:35:26 +00:00
2023-07-17 12:35:26 +00:00
2017-02-09 19:48:28 +01:00
2020-12-15 21:27:56 +06:00
2024-06-27 15:15:08 +00:00
2024-06-27 15:15:08 +00:00
2023-07-17 12:35:26 +00:00
2012-01-03 18:55:45 +01:00
2024-12-02 17:31:38 +00:00
2012-01-03 18:55:45 +01:00
2023-07-17 12:35:26 +00:00

AWS Testsuite

To run it you need to have Python installed along with the package e3-testsuite.

Note there is a dependency on an internal tool called pycross for cross platforms only. This is a work in progress and access to the dependency may be revised soon.

To install e3-testsuite:

pip install git+https://github.com/AdaCore/e3-testsuite.git

You will also need a GNAT in 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 run:

./testsuite.py -j N

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

To run only the 0001_turl tests:

./testsuite.py -j N 0001_turl

All the result and logs are store in the out/new directory by default.

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.