Skip to content
Snippets Groups Projects
Commit 1f871e70 authored by Ben Gamari's avatar Ben Gamari Committed by Marge Bot
Browse files

testsuite: Remove redundant cleaning logic from T16511

The GHCi script for T16511 had some `rm` commands to clean up output
from previous runs. This should be harmless since stderr was redirected
to /dev/null; however, it seems that this redirection doesn't work on
Windows (perhaps because GHCi uses `cmd` to execute the command-line;
I'm not sure). I tried to fix it but was unable to find a sensible
solution.

Regardless, the cleaning logic is quite redundant now that we run each
test in a hermetic environment. Let's just remove it.
parent c1f1f3f9
No related branches found
No related tags found
No related merge requests found
:! rm B.hs 2> /dev/null
:! rm *.o 2> /dev/null
:! rm *.hi 2> /dev/null
:! cp B1.hs B.hs :! cp B1.hs B.hs
:load D.hs :load D.hs
main main
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment