Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
ecf274d4
Commit
ecf274d4
authored
Dec 29, 2014
by
Maxime Perrotin
Browse files
Add paramless TM and TC in regression test
parent
d2996771
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/regression/test-simu/system_structure.pr
View file @
ecf274d4
...
@@ -7,6 +7,8 @@ SYSTEM orchestrator;
...
@@ -7,6 +7,8 @@ SYSTEM orchestrator;
SIGNAL telemetry(myenum);
SIGNAL telemetry(myenum);
SIGNAL peek_list(taste_peek_id_list);
SIGNAL peek_list(taste_peek_id_list);
SIGNAL peek_fixed(fixedintlist);
SIGNAL peek_fixed(fixedintlist);
SIGNAL Paramless_TC;
SIGNAL Paramless_TM;
PROCEDURE ExternalProc;
PROCEDURE ExternalProc;
FPAR
FPAR
...
@@ -15,15 +17,15 @@ SYSTEM orchestrator;
...
@@ -15,15 +17,15 @@ SYSTEM orchestrator;
EXTERNAL;
EXTERNAL;
CHANNEL c
CHANNEL c
FROM ENV TO orchestrator WITH pulse;
FROM ENV TO orchestrator WITH pulse
, Paramless_TC
;
FROM orchestrator TO ENV WITH telemetry, peek_list, peek_fixed;
FROM orchestrator TO ENV WITH telemetry, peek_list, peek_fixed
, Paramless_TM
;
ENDCHANNEL;
ENDCHANNEL;
BLOCK orchestrator;
BLOCK orchestrator;
SIGNALROUTE r
SIGNALROUTE r
FROM ENV TO orchestrator WITH pulse;
FROM ENV TO orchestrator WITH pulse
, Paramless_TC
;
FROM orchestrator TO ENV WITH telemetry, peek_list, peek_fixed;
FROM orchestrator TO ENV WITH telemetry, peek_list, peek_fixed
, Paramless_TM
;
CONNECT c and r;
CONNECT c and r;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment