aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Env.hs
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2019-02-01 20:33:47 +0000
committerYann Herklotz <ymherklotz@gmail.com>2019-02-01 20:33:47 +0000
commit2b690485436b1d4df3c9212a928a1557562fb378 (patch)
tree4e1275166222b71627d97955213cbcde83154161 /src/VeriFuzz/Env.hs
parent157559045f477e443a3f965af6a1959f59930eb8 (diff)
downloadverismith-2b690485436b1d4df3c9212a928a1557562fb378.tar.gz
verismith-2b690485436b1d4df3c9212a928a1557562fb378.zip
Fix all the compile and test errors
Diffstat (limited to 'src/VeriFuzz/Env.hs')
-rw-r--r--src/VeriFuzz/Env.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/VeriFuzz/Env.hs b/src/VeriFuzz/Env.hs
index a20fd2d..0bbd290 100644
--- a/src/VeriFuzz/Env.hs
+++ b/src/VeriFuzz/Env.hs
@@ -13,6 +13,8 @@ Environment to run the simulator and synthesisers in a matrix.
module VeriFuzz.Env where
import Control.Monad.Trans.Reader
+import Prelude hiding (FilePath)
+import Shelly
import VeriFuzz.Icarus
import VeriFuzz.XST
import VeriFuzz.Yosys
@@ -27,5 +29,5 @@ type SimEnv = ReaderT SimMatrix IO
runAll :: SimEnv ()
runAll = do
- val <- asks xst
+ _ <- asks xst
shelly $ run_ "echo" ["Hello World"]