Skip to content

Commit

Permalink
Minor alignment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marnovandermaas authored and PeterRugg committed Jun 7, 2024
1 parent 73e0933 commit e06758e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/QuickCheckVEngine/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ defaultOptions = Options
, optContinueOnFail= False
, optIgnoreAsserts = False
, optSingleImp = False
, csrIncludeRegex = Nothing
, csrExcludeRegex = Nothing
, csrIncludeRegex = Nothing
, csrExcludeRegex = Nothing
}

options :: [OptDescr (Options -> Options)]
Expand Down Expand Up @@ -184,7 +184,7 @@ options =
, Option ['L'] ["test-length"]
(ReqArg (\ f opts -> opts { testLen = read f }) "TEST-LENGTH")
"Generate tests up to TEST-LENGTH instructions long"
, Option [] ["strict-comparison"]
, Option [] ["strict-comparison"]
(NoArg (\ opts -> opts { optStrict = True }))
"Compare all RVFI fields"
, Option ['S'] ["disable-shrink"]
Expand All @@ -202,10 +202,10 @@ options =
, Option [] ["single-implementation"]
(NoArg (\ opts -> opts { optSingleImp = True }))
"Run with only implementation A, testing asserts only (if enabled)"
, Option [] ["csr-include-regex"]
, Option [] ["csr-include-regex"]
(ReqArg (\ f opts -> opts { csrIncludeRegex = Just f }) "REGEX")
"Specify REGEX to test only a subset of CSRs"
, Option [] ["csr-exclude-regex"]
, Option [] ["csr-exclude-regex"]
(ReqArg (\ f opts -> opts { csrExcludeRegex = Just f }) "REGEX")
"Specify REGEX to exclude a subset of CSRs from tests"
]
Expand Down

0 comments on commit e06758e

Please sign in to comment.