Skip to content
Snippets Groups Projects
Unverified Commit 9616d689 authored by Oleg Grenrus's avatar Oleg Grenrus Committed by GitHub
Browse files

Merge pull request #6132 from haskell/enable-cmd-run-script-test

Issue 5775 seems to be fixed, let's see
parents 27221efc edc79ab7
No related branches found
No related tags found
No related merge requests found
# cabal v2-run
Resolving dependencies...
Build profile: -w ghc-<GHCVER> -O1
In order, the following will be built:
- fake-package-0 (exe:script) (first run)
Configuring executable 'script' for fake-package-0..
Preprocessing executable 'script' for fake-package-0..
Building executable 'script' for fake-package-0..
import Test.Cabal.Prelude
main = cabalTest $ do
expectBroken 5775 $ cabal' "v2-run" ["script.hs"]
return ()
res <- cabal' "v2-run" ["script.hs"]
assertOutputContains "Hello World" res
#! /usr/bin/env cabal
{- cabal:
build-depends: base ^>= 4.0
build-depends: base >= 4.3 && <5
-}
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE ScopedTypeVariables #-}
......@@ -8,4 +8,4 @@ build-depends: base ^>= 4.0
import Prelude
main :: IO ()
main = return ()
main = putStrLn "Hello World"
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