Skip to content
GitLab
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;
SIGNAL telemetry(myenum);
SIGNAL peek_list(taste_peek_id_list);
SIGNAL peek_fixed(fixedintlist);
SIGNAL Paramless_TC;
SIGNAL Paramless_TM;
PROCEDURE ExternalProc;
FPAR
...
...
@@ -15,15 +17,15 @@ SYSTEM orchestrator;
EXTERNAL;
CHANNEL c
FROM ENV TO orchestrator WITH pulse;
FROM orchestrator TO ENV WITH telemetry, peek_list, peek_fixed;
FROM ENV TO orchestrator WITH pulse
, Paramless_TC
;
FROM orchestrator TO ENV WITH telemetry, peek_list, peek_fixed
, Paramless_TM
;
ENDCHANNEL;
BLOCK orchestrator;
SIGNALROUTE r
FROM ENV TO orchestrator WITH pulse;
FROM orchestrator TO ENV WITH telemetry, peek_list, peek_fixed;
FROM ENV TO orchestrator WITH pulse
, Paramless_TC
;
FROM orchestrator TO ENV WITH telemetry, peek_list, peek_fixed
, Paramless_TM
;
CONNECT c and r;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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