File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ newFailingTests :: Set String
6161newFailingTests = Set. fromList
6262 [ " eval-okay-hash"
6363 , " eval-okay-hashfile"
64- , " eval-okay-path"
64+ , " eval-okay-path" -- #128
6565 , " eval-okay-types"
6666 , " eval-okay-fromTOML"
6767 , " eval-okay-context-introspection"
@@ -71,9 +71,9 @@ genTests :: IO TestTree
7171genTests = do
7272 testFiles <-
7373 sort
74- -- jww (2018-05-07): Temporarily disable this test until #128 is fixed .
75- . filter ((`Set.notMember` newFailingTests) . takeBaseName)
76- . filter ((/= " .xml" ) . takeExtension)
74+ -- Disabling the not yet done tests cases .
75+ . filter ((`Set.notMember` newFailingTests) . takeBaseName)
76+ . filter ((/= " .xml" ) . takeExtension)
7777 <$> globDir1 (compile " *-*-*.*" ) " data/nix/tests/lang"
7878 let testsByName = groupBy (takeFileName . dropExtensions) testFiles
7979 let testsByType = groupBy testType (Map. toList testsByName)
You can’t perform that action at this time.
0 commit comments