I'm getting the following error:
$ echo $0
bash
$ shelltest --version
shelltest 1.3.5
$ cat test.test
diff <(ghc -V) <(ghc -V)
<<<
>>>
>>>2
>>>= 0
$ shelltest test.test
:test.test: [Failed]
Expected stderr:
Got stderr:
/bin/sh: 1: Syntax error: "(" unexpected
Expected exit code:
0
Got exit code:
2
Note that I'm using bash but the error mentions sh. The error is due to the command
is accepted by bash but rejected by sh, and shelltest is using sh.
I'm getting the following error:
Note that I'm using
bashbut the error mentionssh. The error is due to the commandis accepted by
bashbut rejected bysh, andshelltestis usingsh.