You've already forked ada_language_server
mirror of
https://github.com/AdaCore/ada_language_server.git
synced 2026-02-12 12:45:50 -08:00
8 lines
268 B
Bash
Executable File
8 lines
268 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# This is a wrapper to run the Ada Language Sever with valgrind
|
|
# and all the needed arguments from the testsuite.
|
|
|
|
dir_path=$(dirname $0)
|
|
valgrind --quiet --tool=memcheck --leak-check=full --suppressions=$dir_path/leaks.supp ada_language_server $@
|