Skip to content
Snippets Groups Projects
Commit f0fd6c51 authored by Botond Baranyi's avatar Botond Baranyi
Browse files

Adjusted conformance tests to new mtc/system clause changes (#655, #656)


Signed-off-by: default avatarBotond Baranyi <botond.baranyi@ericsson.com>
parent 83257ef4
No related branches found
No related tags found
1 merge request!480Adjusted conformance tests to new mtc/system clause changes (#655, #656)
......@@ -32,10 +32,16 @@ module Sem_060303_component_types_004 {
inout integer;
} with {extension "internal"}
/* this kind of component type compatibility doesn't work at runtime with the current architecture,
components must extend one another to be compatible
type component GeneralComp {
port P p1;
port P p2;
}
}*/
type component GeneralComp extends GeneralCompEx {
port P p2;
}
type component GeneralCompEx {
port P p1;
......
......@@ -32,10 +32,16 @@ module Sem_060303_component_types_005 {
inout integer;
} with {extension "internal"}
/* this kind of component type compatibility doesn't work at runtime with the current architecture,
components must extend one another to be compatible
type component GeneralComp {
port P p1;
port P p2;
}
}*/
type component GeneralComp extends GeneralCompEx {
port P p2;
}
type component GeneralCompEx {
port P p1;
......
......@@ -32,10 +32,16 @@ module Sem_060303_component_types_006 {
inout integer;
} with {extension "internal"}
/* this kind of component type compatibility doesn't work at runtime with the current architecture,
components must extend one another to be compatible
type component GeneralComp {
port P p1;
port P p2;
}
}*/
type component GeneralComp extends GeneralCompEx {
port P p2;
}
type component GeneralCompEx {
port P p1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment