Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
buildsupport
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TASTE
buildsupport
Compare Revisions
7a46681bb27df4da4cc40fff3f645ef947c39c56...fe2d7bbcdde8b4517994324509924408aedcdbc9
Source
fe2d7bbcdde8b4517994324509924408aedcdbc9
Select Git revision
...
Target
7a46681bb27df4da4cc40fff3f645ef947c39c56
Select Git revision
Compare
Commits (2)
Add parsing of taste_properties.aadl
· 55d0d1cc
Maxime Perrotin
authored
Mar 04, 2020
Latest version of ocarina does not parse it by default
55d0d1cc
Merge
https://github.com/esa/buildsupport
· fe2d7bbc
Maxime Perrotin
authored
Mar 04, 2020
fe2d7bbc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
ada/buildsupport.adb
ada/buildsupport.adb
+8
-0
No files found.
ada/buildsupport.adb
View file @
fe2d7bbc
...
...
@@ -1342,6 +1342,14 @@ procedure BuildSupport is
Interface_Root
:=
Ocarina
.
Parser
.
Parse
(
AADL_Language
,
Interface_Root
,
B
);
-- Parse taste AADL library and join it to the interface view
Set_Str_To_Name_Buffer
(
"taste_properties.aadl"
);
FN
:=
Ocarina
.
Files
.
Search_File
(
Name_Find
);
Exit_On_Error
(
FN
=
No_Name
,
"File not found: taste_properties.aadl"
);
B
:=
Ocarina
.
Files
.
Load_File
(
FN
);
Interface_Root
:=
Ocarina
.
Parser
.
Parse
(
AADL_Language
,
Interface_Root
,
B
);
if
Concurrency_view
=
0
and
Generate_Glue
then
Put_Line
(
"Fatal error: Missing Deployment view!"
);
Put_Line
(
"Use the '-c file.aadl' parameter."
);
...
...