Skip to content
Snippets Groups Projects
Commit b89cbb31 authored by benjamin.franksen's avatar benjamin.franksen
Browse files

test: replaced connect with assign in pvGet.st

parent a32a34b8
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ entry { ...@@ -28,7 +28,7 @@ entry {
ss read_named { ss read_named {
int named; int named;
connect named to "pvGet1"; assign named to "pvGet1";
int expected; int expected;
int n = 0; int n = 0;
...@@ -110,7 +110,7 @@ ss read_anon { ...@@ -110,7 +110,7 @@ ss read_anon {
ss read_named_sync { ss read_named_sync {
int named; int named;
connect named to "pvGet1"; assign named to "pvGet1";
int expected; int expected;
int n = 0; int n = 0;
...@@ -184,7 +184,7 @@ ss read_anon_sync { ...@@ -184,7 +184,7 @@ ss read_anon_sync {
ss write { ss write {
int out = 0; int out = 0;
connect out to "pvGet1"; assign out to "pvGet1";
state run { state run {
when (efTest(ef_read_named) && efTest(ef_read_anon) && when (efTest(ef_read_named) && efTest(ef_read_anon) &&
......
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