diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2019-08-21 10:17:27 +0200 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2019-08-21 10:17:27 +0200 |
| commit | 07b2b4d83078d0fd260d5f0812e8d5a34d02b793 (patch) | |
| tree | dba2a8e8316e8cd868ccb7b46a80d63c5f61a224 /ci | |
| parent | 0e146f8d1142672725b6abb38478f503a9261c80 (diff) | |
doc up
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/expected/cfg.run | 2 | ||||
| -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.run | 5 | ||||
| -rw-r--r-- | ci/expected/ramfunc.grep.bar | 4 | ||||
| -rw-r--r-- | ci/expected/ramfunc.grep.foo | 4 | ||||
| -rw-r--r-- | ci/expected/task.run | 4 | ||||
| -rw-r--r-- | ci/script.sh | 12 |
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=() |
