mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
rebar_qc: fix #292 (Reported-by: Brian L. Troutwine)
This commit is contained in:
parent
19d1ee2c4e
commit
3f2ad54ebc
1 changed files with 7 additions and 1 deletions
|
@ -128,7 +128,13 @@ run(Config, QC, QCOpts) ->
|
|||
[Errors])
|
||||
end.
|
||||
|
||||
qc_module(QC=triq, _QCOpts, M) -> QC:module(M);
|
||||
qc_module(QC=triq, _QCOpts, M) ->
|
||||
case QC:module(M) of
|
||||
true ->
|
||||
[];
|
||||
Failed ->
|
||||
[Failed]
|
||||
end;
|
||||
qc_module(QC=eqc, QCOpts, M) -> QC:module(QCOpts, M).
|
||||
|
||||
find_prop_mods() ->
|
||||
|
|
Loading…
Reference in a new issue