Commit 66fecebb authored by Fabio Utzig's avatar Fabio Utzig Committed by Tamas Ban
Browse files

ci: Fix FIH YAML result parsing



The running test was generating an YAML output with the following line:

```
last_line: '  Description: 'ECDSA signature test of attest token''
```

This string comes from the test with the single quotes, and using single
quotes twice break the YAML format, so this commit changes the string
after last_line to be enclosed in the double quotes.

Signed-off-by: default avatarFabio Utzig <utzig@apache.org>
parent ceb9b116
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ EOF
                echo "    test_exec_ok: True"
                echo "    skipped: True"
                echo "    boot: False"
                echo "    last_line: '$LAST_LINE' "
                echo "    last_line: \"$LAST_LINE\" "
            fi
        else
            # The target was not stopped at the desired address.