You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
Some tests were using .gps Another was using the wrong directory. Change-Id: Ic125e4fc0212da9e5190cc39e3fd12c714f8ff91
20 lines
417 B
Batchfile
Executable File
20 lines
417 B
Batchfile
Executable File
|
|
### Description
|
|
## Parse variables in CPP code
|
|
|
|
if [ "$CPP_TESTING" = "false" ]; then
|
|
# do not test cpp
|
|
exit 99
|
|
fi
|
|
|
|
gprbuild -q -Pgvd_cpp
|
|
|
|
list="Gdb Gdb_MI"
|
|
#list="Gdb Gdb_Pretty_Printer Gdb_MI"
|
|
|
|
for gdb in $list; do
|
|
rm -rf $GNATSTUDIO_HOME/.gnatstudio/properties.db
|
|
rm -rf $GNATSTUDIO_HOME/.gnatstudio/properties.json
|
|
$GPS --traceon=MODULE.Debugger_$gdb --load=python:test.py --debug=obj/parse_cpp
|
|
done
|