Skip to content

Commit

Permalink
Exclude SML from allmodes
Browse files Browse the repository at this point in the history
  • Loading branch information
jazullo committed Oct 18, 2023
1 parent fcb4be7 commit b9cac41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gibbon-compiler/tests/TestRunner.hs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ instance FromJSON Mode where
parseJSON oth = error $ "Cannot parse Mode: " ++ show oth

allModes :: [Mode]
allModes = [minBound ..]
allModes = filter (/= MPL) [minBound ..] -- all modes does not include MPL

readMode :: T.Text -> Mode
readMode s =
Expand Down

0 comments on commit b9cac41

Please sign in to comment.