File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ testsuite/out/
16
16
lkql /build.sh
17
17
testsuite /build
18
18
testsuite /libadalang
19
- testsuite /ada_projects /libadalang-internal- testsuite
19
+ testsuite /ada_projects /common- testsuite-sources
20
20
testsuite /run_testsuite.sh
21
21
callgrind *
22
22
gnatcheck.out
Original file line number Diff line number Diff line change 1
1
driver : ' gnatcheck'
2
- project : ' libadalang-internal- testsuite/ sources/gnatcoll/gnatcoll.gpr'
2
+ project : ' common- testsuite- sources/gnatcoll/gnatcoll.gpr'
3
3
rules :
4
4
- +Rrecursive_subprograms
5
5
- +Routside_references_from_subprograms
Original file line number Diff line number Diff line change 1
1
driver : ' gnatcheck'
2
- project : ' libadalang-internal- testsuite/ sources/gnatcoverage/gnatcov.gpr'
2
+ project : ' common- testsuite- sources/gnatcoverage/gnatcov.gpr'
3
3
rules :
4
4
- +Rrecursive_subprograms
5
5
- +Routside_references_from_subprograms
Original file line number Diff line number Diff line change @@ -154,21 +154,23 @@ def set_up(self) -> None:
154
154
])
155
155
156
156
# If the performance mode is enabled, verify that the user has checked
157
- # out the libadalang-internal- testsuite in the "ada_projects" directory.
157
+ # out the common- testsuite-sources in the "ada_projects" directory.
158
158
# Additionally add the internal sources to the GPR project path.
159
159
if self .env .options .perf_mode :
160
- lalinttest_dir = P .join (
160
+ common_sources = P .join (
161
161
self .root_dir ,
162
162
"ada_projects" ,
163
- "libadalang-internal- testsuite"
163
+ "common- testsuite-sources "
164
164
)
165
- if not P .isdir (lalinttest_dir ):
165
+ if not P .isdir (common_sources ):
166
166
raise RuntimeError ("You need to check out"
167
- " 'libadalang-internal- testsuite' to enable"
167
+ " 'common- testsuite-sources ' to enable"
168
168
" performance testing" )
169
169
else :
170
- lalinttest_sources = glob .glob (P .join (lalinttest_dir , "sources" , "*" ))
171
- for source_dir in [s for s in lalinttest_sources if P .isdir (s )]:
170
+ lalinttest_sources = glob .glob (P .join (common_sources , "*" ))
171
+ for source_dir in [
172
+ s for s in lalinttest_sources if P .isdir (s )
173
+ ]:
172
174
os .environ ['GPR_PROJECT_PATH' ] = P .pathsep .join ([
173
175
source_dir ,
174
176
os .environ .get ("GPR_PROJECT_PATH" , "" ),
You can’t perform that action at this time.
0 commit comments