From 07b2b4d83078d0fd260d5f0812e8d5a34d02b793 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Wed, 21 Aug 2019 10:17:27 +0200 Subject: doc up --- ci/expected/cfg.run | 2 ++ ci/expected/hardware.run | 4 ++++ ci/expected/interrupt.run | 4 ---- ci/expected/only-shared-access.run | 2 ++ ci/expected/preempt.run | 5 +++++ ci/expected/ramfunc.grep.bar | 4 +--- ci/expected/ramfunc.grep.foo | 4 +--- ci/expected/static.run | 2 -- ci/expected/task.run | 4 +++- ci/script.sh | 12 +++++++++--- 10 files changed, 27 insertions(+), 16 deletions(-) create mode 100644 ci/expected/cfg.run create mode 100644 ci/expected/hardware.run delete mode 100644 ci/expected/interrupt.run create mode 100644 ci/expected/only-shared-access.run create mode 100644 ci/expected/preempt.run delete mode 100644 ci/expected/static.run (limited to 'ci') 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/hardware.run b/ci/expected/hardware.run new file mode 100644 index 0000000..ef00864 --- /dev/null +++ b/ci/expected/hardware.run @@ -0,0 +1,4 @@ +init +UART0 called 1 time +idle +UART0 called 2 times diff --git a/ci/expected/interrupt.run b/ci/expected/interrupt.run deleted file mode 100644 index ef00864..0000000 --- a/ci/expected/interrupt.run +++ /dev/null @@ -1,4 +0,0 @@ -init -UART0 called 1 time -idle -UART0 called 2 times diff --git a/ci/expected/only-shared-access.run b/ci/expected/only-shared-access.run new file mode 100644 index 0000000..1d4eed0 --- /dev/null +++ b/ci/expected/only-shared-access.run @@ -0,0 +1,2 @@ +UART1(key = 0xdeadbeef) +UART0(key = 0xdeadbeef) 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/static.run b/ci/expected/static.run deleted file mode 100644 index 1d4eed0..0000000 --- a/ci/expected/static.run +++ /dev/null @@ -1,2 +0,0 @@ -UART1(key = 0xdeadbeef) -UART0(key = 0xdeadbeef) 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=() -- cgit v1.2.3