mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-06 06:20:48 +02:00
22 lines
513 B
Markdown
22 lines
513 B
Markdown
|
|
# ADA Wrapper Tests
|
||
|
|
|
||
|
|
This directory contains tests for the ADA wrapper.
|
||
|
|
|
||
|
|
## Running the Tests
|
||
|
|
|
||
|
|
To run the tests using [alire](https://alire.ada.dev/), execute the following command from this directory:
|
||
|
|
|
||
|
|
```
|
||
|
|
alr run
|
||
|
|
```
|
||
|
|
|
||
|
|
This will build and run all ADA wrapper tests.
|
||
|
|
|
||
|
|
## Running the Tests with Valgrind
|
||
|
|
|
||
|
|
After building the tests with `alr build`, you can run them with valgrind using the provided suppressions file:
|
||
|
|
|
||
|
|
```
|
||
|
|
valgrind --track-origins=yes --leak-check=full --suppressions=valgrind.supp ./bin/tests
|
||
|
|
```
|