Skip to content

Commit

Permalink
Merge branch 'leo/VC07-013-test_fix' into 'master'
Browse files Browse the repository at this point in the history
TGen: Fix marshalling test on windows

See merge request eng/ide/libadalang-tools!15
  • Loading branch information
leocreuse committed Jan 3, 2023
2 parents 12db4e6 + 0c382dc commit 44fe445
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testsuite/tests/test/marshalling_nested/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
LALTOOLS_ROOT=$(dirname $(which gnattest))/..
TEMPLATES_PATH=$LALTOOLS_ROOT/share/tgen/templates
RTS_PATH=$LALTOOLS_ROOT/share/tgen/tgen_rts
if [[ "$OS" == "Windows_NT" ]]; then
if [ "$OS" == "Windows_NT" ]; then
export GPR_PROJECT_PATH=$RTS_PATH";"$GPR_PROJECT_PATH
else
export GPR_PROJECT_PATH=$RTS_PATH:$GPR_PROJECT_PATH
Expand Down
2 changes: 1 addition & 1 deletion testsuite/tests/test/tagada_marshalling/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
LALTOOLS_ROOT=$(dirname $(which gnattest))/..
TEMPLATES_PATH=$LALTOOLS_ROOT/share/tgen/templates
RTS_PATH=$LALTOOLS_ROOT/share/tgen/tgen_rts
if [[ "$OS" == "Windows_NT" ]]; then
if [ "$OS" == "Windows_NT" ]; then
export GPR_PROJECT_PATH=$RTS_PATH";"$GPR_PROJECT_PATH
else
export GPR_PROJECT_PATH=$RTS_PATH:$GPR_PROJECT_PATH
Expand Down

0 comments on commit 44fe445

Please sign in to comment.