You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add scripts/test/ for python3.10-http-server/:
- README.md: instructions to run the tests
- common.sh: common functions and variables for test scripts
- single.sh: test an instance started beforehand
- wrapper.sh: wrapper over single.sh that also starts an instance
- all.sh: test all configurations
Signed-off-by: Arghir Elisa-Elena <arghirelisaelena@gmail.com>
These are companion instructions to the main instructions in the [`README`](../../README.md) and to the scripted run instructions in the [`scripts/README`](../README.md).
4
+
Use these scripts to test Python3.10 Http Server on Unikraft.
5
+
6
+
**Note**: Run scripts from the application directory.
7
+
8
+
Use the `all.sh` script to test all builds and all available runs:
9
+
10
+
```console
11
+
./scripts/test/all.sh
12
+
```
13
+
14
+
The command prints out a summary of the passed or failed tests.
15
+
16
+
Logs are stored in the `./scripts/test/log/` directory.
17
+
18
+
Use the `single.sh` script to only run a query test for a running instance.
19
+
That is, first run the instance, e.g:
20
+
21
+
```console
22
+
./scripts/run/qemu.x86_64
23
+
```
24
+
25
+
And then query it with the `single.sh` script:
26
+
27
+
```console
28
+
./single.sh
29
+
```
30
+
31
+
The command prints out the output of the commands that query the instance.
0 commit comments