Skip to content

Commit 06bf27e

Browse files
committed
CI: Add remaning grep
Signed-off-by: Dharma Saputra Wijaya <[email protected]>
1 parent 428d64a commit 06bf27e

File tree

1 file changed

+41
-27
lines changed

1 file changed

+41
-27
lines changed

.github/workflows/ci.yaml

Lines changed: 41 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,8 @@ jobs:
255255
# Check
256256
- run: |
257257
grep '] rust_minimal: Rust minimal sample (init)$' qemu-stdout.log
258+
grep '] rust_minimal: Am I built-in? false$' qemu-stdout.log
259+
grep '] rust_minimal: My message is on the heap!$' qemu-stdout.log
258260
grep '] rust_minimal: Rust minimal sample (exit)$' qemu-stdout.log
259261
260262
- run: |
@@ -281,36 +283,47 @@ jobs:
281283
grep '] rust_print: Rust printing macros sample (exit)$' qemu-stdout.log
282284
283285
- run: |
284-
grep '] rust_module_parameters: Rust module parameters sample (init)$' qemu-stdout.log
285-
286-
grep '] rust_module_parameters_builtin_default: my_bool: true$' qemu-stdout.log
287-
grep '] rust_module_parameters_builtin_default: my_i32: 42$' qemu-stdout.log
288-
grep '] rust_module_parameters_builtin_default: my_str: default str val$' qemu-stdout.log
289-
grep '] rust_module_parameters_builtin_default: my_usize: 42$' qemu-stdout.log
290-
grep '] rust_module_parameters_builtin_default: my_array: \[0, 1]$' qemu-stdout.log
291-
292-
grep '] rust_module_parameters_builtin_custom: my_bool: false$' qemu-stdout.log
293-
grep '] rust_module_parameters_builtin_custom: my_i32: 345543$' qemu-stdout.log
294-
grep '] rust_module_parameters_builtin_custom: my_str: 🦀mod$' qemu-stdout.log
295-
grep '] rust_module_parameters_builtin_custom: my_usize: 84$' qemu-stdout.log
296-
grep '] rust_module_parameters_builtin_custom: my_array: \[1, 2, 3]$' qemu-stdout.log
297-
298-
grep '] rust_module_parameters_loadable_default: my_bool: true$' qemu-stdout.log
299-
grep '] rust_module_parameters_loadable_default: my_i32: 42$' qemu-stdout.log
300-
grep '] rust_module_parameters_loadable_default: my_str: default str val$' qemu-stdout.log
301-
grep '] rust_module_parameters_loadable_default: my_usize: 42$' qemu-stdout.log
302-
grep '] rust_module_parameters_loadable_default: my_array: \[0, 1]$' qemu-stdout.log
303-
304-
grep '] rust_module_parameters_loadable_custom: my_bool: false$' qemu-stdout.log
305-
grep '] rust_module_parameters_loadable_custom: my_i32: 345543$' qemu-stdout.log
306-
grep '] rust_module_parameters_loadable_custom: my_str: 🦀mod$' qemu-stdout.log
307-
grep '] rust_module_parameters_loadable_custom: my_usize: 84$' qemu-stdout.log
308-
grep '] rust_module_parameters_loadable_custom: my_array: \[1, 2, 3]$' qemu-stdout.log
309-
310-
grep '] rust_module_parameters: Rust module parameters sample (exit)$' qemu-stdout.log
286+
grep '] rust_module_parameters_builtin_default: Rust module parameters sample (init)' qemu-stdout.log
287+
grep '] rust_module_parameters_builtin_default: my_bool: true$' qemu-stdout.log
288+
grep '] rust_module_parameters_builtin_default: my_i32: 42$' qemu-stdout.log
289+
grep '] rust_module_parameters_builtin_default: my_str: default str val$' qemu-stdout.log
290+
grep '] rust_module_parameters_builtin_default: my_usize: 42$' qemu-stdout.log
291+
grep '] rust_module_parameters_builtin_default: my_array: \[0, 1]$' qemu-stdout.log
292+
293+
grep '] rust_module_parameters_builtin_custom: Rust module parameters sample (init)$' qemu-stdout.log
294+
grep '] rust_module_parameters_builtin_custom: my_bool: false$' qemu-stdout.log
295+
grep '] rust_module_parameters_builtin_custom: my_i32: 345543$' qemu-stdout.log
296+
grep '] rust_module_parameters_builtin_custom: my_str: 🦀mod$' qemu-stdout.log
297+
grep '] rust_module_parameters_builtin_custom: my_usize: 84$' qemu-stdout.log
298+
grep '] rust_module_parameters_builtin_custom: my_array: \[1, 2, 3]$' qemu-stdout.log
299+
300+
grep '] rust_module_parameters_loadable_default: Rust module parameters sample (init)$' qemu-stdout.log
301+
grep '] rust_module_parameters_loadable_default: my_bool: true$' qemu-stdout.log
302+
grep '] rust_module_parameters_loadable_default: my_i32: 42$' qemu-stdout.log
303+
grep '] rust_module_parameters_loadable_default: my_str: default str val$' qemu-stdout.log
304+
grep '] rust_module_parameters_loadable_default: my_usize: 42$' qemu-stdout.log
305+
grep '] rust_module_parameters_loadable_default: my_array: \[0, 1]$' qemu-stdout.log
306+
grep '] rust_module_parameters_loadable_default: Rust module parameters sample (exit)$' qemu-stdout.log
307+
308+
grep '] rust_module_parameters_loadable_custom: Rust module parameters sample (init)$' qemu-stdout.log
309+
grep '] rust_module_parameters_loadable_custom: my_bool: false$' qemu-stdout.log
310+
grep '] rust_module_parameters_loadable_custom: my_i32: 345543$' qemu-stdout.log
311+
grep '] rust_module_parameters_loadable_custom: my_str: 🦀mod$' qemu-stdout.log
312+
grep '] rust_module_parameters_loadable_custom: my_usize: 84$' qemu-stdout.log
313+
grep '] rust_module_parameters_loadable_custom: my_array: \[1, 2, 3]$' qemu-stdout.log
314+
grep '] rust_module_parameters_loadable_custom: Rust module parameters sample (exit)$' qemu-stdout.log
315+
316+
grep '] rust_module_parameters: Rust module parameters sample (init)$' qemu-stdout.log
317+
grep '] rust_module_parameters: my_bool: true$' qemu-stdout.log
318+
grep '] rust_module_parameters: my_i32: 42$' qemu-stdout.log
319+
grep '] rust_module_parameters: my_str: default str val$' qemu-stdout.log
320+
grep '] rust_module_parameters: my_usize: 42$' qemu-stdout.log
321+
grep '] rust_module_parameters: my_array: \[0, 1]$' qemu-stdout.log
322+
grep '] rust_module_parameters: Rust module parameters sample (exit)$' qemu-stdout.log
311323
312324
- run: |
313325
grep '] rust_sync: Rust synchronisation primitives sample (init)$' qemu-stdout.log
326+
grep '] rust_sync: Value: 10$' qemu-stdout.log
314327
grep '] rust_sync: Rust synchronisation primitives sample (exit)$' qemu-stdout.log
315328
316329
- run: |
@@ -323,6 +336,7 @@ jobs:
323336
324337
- run: |
325338
grep '] rust_stack_probing: Rust stack probing sample (init)$' qemu-stdout.log
339+
grep '] rust_stack_probing: Large array has length: 514$' qemu-stdout.log
326340
grep '] rust_stack_probing: Rust stack probing sample (exit)$' qemu-stdout.log
327341
328342
- run: |

0 commit comments

Comments
 (0)