Changed (once again) the evaluation delimiters (<| and |>)

This commit is contained in:
2026-02-13 18:51:49 +01:00
parent a6058b9dd8
commit 899857767a
21 changed files with 71 additions and 70 deletions

View File

@@ -16,17 +16,17 @@
- $(loop_param)
exit_condition:
value: $| $(pfn_Echo function) > 3 |
value: <| $(pfn_Echo function) > 3 |>
- let:
name: let
key: $(test)_PASS
values:
- conditional_exec: $| random.randint(1, 2) |
- conditional_exec: <| random.randint(1, 2) |>
- console:
name: Console creation
condition: $| $(conditional_exec) == 1 |
condition: <| $(conditional_exec) == 1 |>
console_name: consname
doc: Opening the console
key: $(test)_PASS
@@ -34,18 +34,19 @@
- open:
protocol: terminal
terminal_path: $(test_directory)
- writeln: echo "terminal loaded"
- console:
name: Console read_until with timeout
condition: $| $(conditional_exec) == 1 |
condition: <| $(conditional_exec) == 1 |>
console_name: consname
key: $(test)_PASS
steps:
- read_until: {expected: "$(terminal_prompt)", timeout: 10}
- read_until: {expected: terminal loaded, timeout: 5}
- console:
name: Console write
condition: $| $(conditional_exec) == 1 |
condition: <| $(conditional_exec) == 1 |>
console_name: consname
key: $(test)_PASS
steps:
@@ -53,12 +54,12 @@
- sleep:
name: sleep item
condition: $| $(conditional_exec) == 1 |
condition: <| $(conditional_exec) == 1 |>
timeout: 1
- console:
name: Console read_until immediate
condition: $| $(conditional_exec) == 1 |
condition: <| $(conditional_exec) == 1 |>
console_name: consname
key: $(test)_PASS
steps:
@@ -66,7 +67,7 @@
- console:
name: Console read_until immediate (2)
condition: $| $(conditional_exec) == 1 |
condition: <| $(conditional_exec) == 1 |>
console_name: consname
key: $(test)_PASS
steps:
@@ -74,7 +75,7 @@
- console:
name: Console closure
condition: $| $(conditional_exec) == 1 |
condition: <| $(conditional_exec) == 1 |>
console_name: consname
key: $(test)_PASS
steps:
@@ -82,5 +83,5 @@
- sleep:
name: sleep item
condition: $| $(conditional_exec) == 2 |
condition: <| $(conditional_exec) == 2 |>
timeout: 1