You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When not running with `-V` or `--more-verbose`, we now pipe the stdout
of the executable under test to /dev/null. This prevents quickbench from
running out of memory in case the output is huge (GBs).
MINOR REMARK
With my version of GHC (9.6.6), all exceptions unfortunately get annoted
`withBinaryFile`, see https://gitlab.haskell.org/ghc/ghc/-/issues/20886.
For example, when running `quickbench -w doesnotexist`, the error
message is:
```
/dev/null: withBinaryFile: does not exist (No such file or directory)
```
When running `quickbench -w doesnotexist --more-verbose`, avoiding the
call to `withBinaryFile`, the error message is the much clearer:
```
doesnotexist: readCreateProcess: posix_spawnp: does not exist (No such file or directory)
```
This is not ideal, but I believe using the latest version of GHC will
fix it.
0 commit comments