diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-12-20 21:08:55 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-12-20 21:08:55 +0100 |
commit | 84490e821deee16fe8155df2b9328c23d953c4fb (patch) | |
tree | fd5375aecd92a64c156191fc3293a414184af06e /testsuite/gna/ticket24/testsuite.sh | |
parent | c3ed5c426b8be1144574b9e33135450cf6ceab1a (diff) | |
download | ghdl-84490e821deee16fe8155df2b9328c23d953c4fb.tar.gz ghdl-84490e821deee16fe8155df2b9328c23d953c4fb.tar.bz2 ghdl-84490e821deee16fe8155df2b9328c23d953c4fb.zip |
testsuite/gna: adjust for windows.
Diffstat (limited to 'testsuite/gna/ticket24/testsuite.sh')
-rwxr-xr-x | testsuite/gna/ticket24/testsuite.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/gna/ticket24/testsuite.sh b/testsuite/gna/ticket24/testsuite.sh index 2609c6022..1336ae331 100755 --- a/testsuite/gna/ticket24/testsuite.sh +++ b/testsuite/gna/ticket24/testsuite.sh @@ -5,7 +5,7 @@ analyze -fpsl psl.vhdl elab_simulate -fpsl psl --psl-report=psl.out -if ! cmp psl.out psl.ref; then +if ! diff --strip-trailing-cr psl.out psl.ref > /dev/null; then echo "report mismatch" exit 1 fi @@ -18,7 +18,7 @@ GHDL_STD_FLAGS="-fpsl --std=08" analyze psl.vhdl elab_simulate psl --psl-report=psl.out -cmp -s psl.out psl.ref +diff --strip-trailing-cr -q psl.out psl.ref rm -f psl.out clean |