There's an enormous lot of good stuff in this, but I've messed up print

almost certainly by writing a non-wide character to a wide stream.
This commit is contained in:
Simon Brooke 2018-12-07 20:09:33 +00:00
parent 7e40d65df0
commit 93b84087ce
13 changed files with 379 additions and 131 deletions

View file

@ -1,8 +1,8 @@
#!/bin/bash
value='"Fred"'
expected="String cell: character 'F'"
echo ${value} | target/psse -d 2>&1 | grep "${expected}" > /dev/null
expected="String cell: character 'F' (70)"
echo ${value} | target/psse -d 2>/dev/null | grep "${expected}" > /dev/null
if [ $? -eq 0 ]
then