Files

22 lines
513 B
Markdown
Raw Permalink Normal View History

2025-11-20 22:50:40 +01:00
# 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
```