aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rw-r--r--ci/expected/cfg.run2
-rw-r--r--ci/expected/hardware.run (renamed from ci/expected/interrupt.run)0
-rw-r--r--ci/expected/only-shared-access.run (renamed from ci/expected/static.run)0
-rw-r--r--ci/expected/preempt.run5
-rw-r--r--ci/expected/ramfunc.grep.bar4
-rw-r--r--ci/expected/ramfunc.grep.foo4
-rw-r--r--ci/expected/task.run4
-rw-r--r--ci/script.sh12
8 files changed, 21 insertions, 10 deletions
diff --git a/ci/expected/cfg.run b/ci/expected/cfg.run
new file mode 100644
index 0000000..b584958
--- /dev/null
+++ b/ci/expected/cfg.run
@@ -0,0 +1,2 @@
+foo has been called 1 time
+foo has been called 2 times
diff --git a/ci/expected/interrupt.run b/ci/expected/hardware.run
index ef00864..ef00864 100644
--- a/ci/expected/interrupt.run
+++ b/ci/expected/hardware.run
diff --git a/ci/expected/static.run b/ci/expected/only-shared-access.run
index 1d4eed0..1d4eed0 100644
--- a/ci/expected/static.run
+++ b/ci/expected/only-shared-access.run
diff --git a/ci/expected/preempt.run b/ci/expected/preempt.run
new file mode 100644
index 0000000..732353a
--- /dev/null
+++ b/ci/expected/preempt.run
@@ -0,0 +1,5 @@
+UART0 - start
+ UART2 - start
+ UART2 - end
+ UART1
+UART0 - end
diff --git a/ci/expected/ramfunc.grep.bar b/ci/expected/ramfunc.grep.bar
index 7f69d25..1fa5bad 100644
--- a/ci/expected/ramfunc.grep.bar
+++ b/ci/expected/ramfunc.grep.bar
@@ -1,3 +1 @@
-20000100 B bar::FREE_QUEUE::lk14244m263eivix
-200000dc B bar::INPUTS::mi89534s44r1mnj1
-20000000 T bar::ns9009yhw2dc2y25
+20000000 t ramfunc::bar::h9d6714fe5a3b0c89 \ No newline at end of file
diff --git a/ci/expected/ramfunc.grep.foo b/ci/expected/ramfunc.grep.foo
index a076ac0..845f277 100644
--- a/ci/expected/ramfunc.grep.foo
+++ b/ci/expected/ramfunc.grep.foo
@@ -1,3 +1 @@
-20000100 B foo::FREE_QUEUE::ujkptet2nfdw5t20
-200000dc B foo::INPUTS::thvubs85b91dg365
-000002c6 T foo::sidaht420cg1mcm8
+00000162 t ramfunc::foo::h30e7789b08c08e19 \ No newline at end of file
diff --git a/ci/expected/task.run b/ci/expected/task.run
index 309fdb9..de45dce 100644
--- a/ci/expected/task.run
+++ b/ci/expected/task.run
@@ -1,3 +1,5 @@
-foo
+foo - start
+foo - middle
baz
+foo - end
bar
diff --git a/ci/script.sh b/ci/script.sh
index 1b3d561..11c8d3a 100644
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -99,13 +99,14 @@ main() {
local exs=(
idle
init
- interrupt
+ hardware
+ preempt
binds
resource
lock
late
- static
+ only-shared-access
task
message
@@ -117,6 +118,7 @@ main() {
shared-with-init
generics
+ cfg
pool
ramfunc
)
@@ -160,7 +162,11 @@ main() {
fi
arm_example "run" $ex "debug" "" "1"
- arm_example "run" $ex "release" "" "1"
+ if [ $ex = types ]; then
+ arm_example "run" $ex "release" "" "1"
+ else
+ arm_example "build" $ex "release" "" "1"
+ fi
done
local built=()