diff options
Diffstat (limited to 'ci')
-rw-r--r-- | ci/expected/async-task-multiple-prios.run | 9 | ||||
-rw-r--r-- | ci/expected/async-task.run | 3 | ||||
-rw-r--r-- | ci/expected/big-struct-opt.run | 3 | ||||
-rw-r--r-- | ci/expected/destructure.run | 4 | ||||
-rw-r--r-- | ci/expected/extern_spawn.run | 3 | ||||
-rw-r--r-- | ci/expected/locals.run | 2 | ||||
-rw-r--r-- | ci/expected/not-sync.run | 3 |
7 files changed, 17 insertions, 10 deletions
diff --git a/ci/expected/async-task-multiple-prios.run b/ci/expected/async-task-multiple-prios.run index 9b0f5336..0b42df0a 100644 --- a/ci/expected/async-task-multiple-prios.run +++ b/ci/expected/async-task-multiple-prios.run @@ -1,5 +1,6 @@ init -hello from normal 2 -hello from async 2 -hello from normal 1 -hello from async 1 +hello from async 3 a 1 +hello from async 4 a 2 +hello from async 1 a 3 +hello from async 2 a 4 +idle diff --git a/ci/expected/async-task.run b/ci/expected/async-task.run index f7ce3a60..6787fa8f 100644 --- a/ci/expected/async-task.run +++ b/ci/expected/async-task.run @@ -1,3 +1,4 @@ init -hello from normal +hello from async2 hello from async +idle diff --git a/ci/expected/big-struct-opt.run b/ci/expected/big-struct-opt.run index e69de29b..7fdef35d 100644 --- a/ci/expected/big-struct-opt.run +++ b/ci/expected/big-struct-opt.run @@ -0,0 +1,3 @@ +async_task data:[22, 22, 22, 22, 22] +uart0 data:[22, 22, 22, 22, 22] +idle diff --git a/ci/expected/destructure.run b/ci/expected/destructure.run index b9b7cc90..25a4b1bd 100644 --- a/ci/expected/destructure.run +++ b/ci/expected/destructure.run @@ -1,2 +1,2 @@ -foo: a = 0, b = 0, c = 0 -bar: a = 0, b = 0, c = 0 +bar: a = 0, b = 1, c = 2 +foo: a = 0, b = 1, c = 2 diff --git a/ci/expected/extern_spawn.run b/ci/expected/extern_spawn.run index 2f8c74f6..257cc564 100644 --- a/ci/expected/extern_spawn.run +++ b/ci/expected/extern_spawn.run @@ -1,2 +1 @@ -foo 1, 2 -foo 2, 3 +foo diff --git a/ci/expected/locals.run b/ci/expected/locals.run index bf1d2076..4f1d3509 100644 --- a/ci/expected/locals.run +++ b/ci/expected/locals.run @@ -1,3 +1,3 @@ -foo: local_to_foo = 1 bar: local_to_bar = 1 +foo: local_to_foo = 1 idle: local_to_idle = 1 diff --git a/ci/expected/not-sync.run b/ci/expected/not-sync.run index e69de29b..cd91476a 100644 --- a/ci/expected/not-sync.run +++ b/ci/expected/not-sync.run @@ -0,0 +1,3 @@ +init +bar a 13 +foo a 13 |