-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'topic/1243' into 'master'
gnat_xref: handle more cases for ParamSpec references Closes #1243 See merge request eng/libadalang/libadalang!1522
- Loading branch information
Showing
5 changed files
with
45 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
testsuite/tests/name_resolution/gnat_compare_body_subprogram_parameters/prj.gpr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
project Prj is | ||
for Source_Dirs use ("."); | ||
for Main use ("test.adb"); | ||
end Prj; |
13 changes: 13 additions & 0 deletions
13
testsuite/tests/name_resolution/gnat_compare_body_subprogram_parameters/test.adb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
procedure Test is | ||
function F | ||
(I : in Integer; | ||
J : in out Integer; | ||
K : out Integer; | ||
L : access Integer) return Integer is | ||
begin | ||
return 0; | ||
end F; | ||
-- I, J, K, L references to F should be ignored by gnat_compare | ||
begin | ||
null; | ||
end; |
17 changes: 17 additions & 0 deletions
17
testsuite/tests/name_resolution/gnat_compare_body_subprogram_parameters/test.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
== test.adb == | ||
test.adb:1:11 => test.adb:1:11 (LAL: ok) | ||
test.adb:2:13 => test.adb:2:13 (LAL: ok) | ||
test.adb:3:7 => test.adb:2:13 (LAL: ok) | ||
test.adb:4:7 => test.adb:2:13 (LAL: ok) | ||
test.adb:5:7 => test.adb:2:13 (LAL: ok) | ||
test.adb:6:7 => test.adb:2:13 (LAL: ok) | ||
test.adb:9:8 => test.adb:2:13 (LAL: ok) | ||
|
||
Stats: | ||
GNAT xrefs have 7 entries | ||
LAL xrefs have: | ||
* 7 OK entries (100.00%) | ||
* 0 DIFFERENT entries (0.00%) | ||
* 0 ERROR entries (0.00%) | ||
* 0 MISSING entries (0.00%) | ||
* 0 ADDITIONAL entries (0.00%) |
2 changes: 2 additions & 0 deletions
2
testsuite/tests/name_resolution/gnat_compare_body_subprogram_parameters/test.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
driver: gnat-compare | ||
project_file: prj.gpr |