summaryrefslogtreecommitdiff
path: root/spec/dev
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2023-05-05 14:41:19 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2023-05-08 21:58:56 +0200
commit6863fa2b525c134a58593a2547dfa74959c3db97 (patch)
tree7d5b5fc60203bbe3d3738be38e1db4de671a4ca6 /spec/dev
parent31a4e9e96b9ade40f4548b1329ef6381163c6d14 (diff)
spec: Use ${.:/step}
Diffstat (limited to 'spec/dev')
-rw-r--r--spec/dev/grlib/val/io.yml20
1 files changed, 10 insertions, 10 deletions
diff --git a/spec/dev/grlib/val/io.yml b/spec/dev/grlib/val/io.yml
index 0d7d46c6..3e06d266 100644
--- a/spec/dev/grlib/val/io.yml
+++ b/spec/dev/grlib/val/io.yml
@@ -16,7 +16,7 @@ test-actions:
- brief: |
Check that the returned value is equal to the prepared value.
code: |
- T_step_eq_u8( ${step}, val_8, 0x81 );
+ T_step_eq_u8( ${.:/step}, val_8, 0x81 );
links:
- role: validation
uid: ../req/load-08
@@ -33,7 +33,7 @@ test-actions:
- brief: |
Check that the returned value is equal to the prepared value.
code: |
- T_step_eq_u16( ${step}, val_16, 0x8001 );
+ T_step_eq_u16( ${.:/step}, val_16, 0x8001 );
links:
- role: validation
uid: ../req/load-16
@@ -50,7 +50,7 @@ test-actions:
- brief: |
Check that the returned value is equal to the prepared value.
code: |
- T_step_eq_u32( ${step}, val_32, 0x80000001 );
+ T_step_eq_u32( ${.:/step}, val_32, 0x80000001 );
links:
- role: validation
uid: ../req/load-32
@@ -67,7 +67,7 @@ test-actions:
- brief: |
Check that the returned value is equal to the prepared value.
code: |
- T_step_eq_u64( ${step}, val_64, 0x8000000000000001 );
+ T_step_eq_u64( ${.:/step}, val_64, 0x8000000000000001 );
links:
- role: validation
uid: ../req/load-64
@@ -82,7 +82,7 @@ test-actions:
- brief: |
Check that the value of the object is equal to the stored value.
code: |
- T_step_eq_u8( ${step}, reg_8, 0x81 );
+ T_step_eq_u8( ${.:/step}, reg_8, 0x81 );
links:
- role: validation
uid: ../req/store-08
@@ -97,7 +97,7 @@ test-actions:
- brief: |
Check that the value of the object is equal to the stored value.
code: |
- T_step_eq_u16( ${step}, reg_16, 0x8001 );
+ T_step_eq_u16( ${.:/step}, reg_16, 0x8001 );
links:
- role: validation
uid: ../req/store-16
@@ -112,7 +112,7 @@ test-actions:
- brief: |
Check that the value of the object is equal to the stored value.
code: |
- T_step_eq_u32( ${step}, reg_32, 0x80000001 );
+ T_step_eq_u32( ${.:/step}, reg_32, 0x80000001 );
links:
- role: validation
uid: ../req/store-32
@@ -127,7 +127,7 @@ test-actions:
- brief: |
Check that the value of the object is equal to the stored value.
code: |
- T_step_eq_u64( ${step}, reg_64, 0x8000000000000001 );
+ T_step_eq_u64( ${.:/step}, reg_64, 0x8000000000000001 );
links:
- role: validation
uid: ../req/store-64
@@ -147,7 +147,7 @@ test-actions:
- brief: |
Check that the transmitter FIFO empty flag was set by ApbuartIORelax().
code: |
- T_step_eq_u32( ${step}, regs.status, APBUART_STATUS_TE );
+ T_step_eq_u32( ${.:/step}, regs.status, APBUART_STATUS_TE );
links:
- role: validation
uid: ../req/apbuart-outbyte-wait
@@ -157,7 +157,7 @@ test-actions:
Check that the data register was written by
${../if/apbuart-outbyte-polled:/name}.
code: |
- T_step_eq_u32( ${step}, regs.data, 0xff );
+ T_step_eq_u32( ${.:/step}, regs.data, 0xff );
links:
- role: validation
uid: ../req/apbuart-outbyte-polled