summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2016-07-12 14:32:41 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2016-07-12 14:32:41 +0200
commit5b4a87fa56135eae06cfaf514f341a3c552a4a40 (patch)
tree599b41e34775eba430a9fe61e8d7004ab8125266 /src
parent17f3ad7e247c5aa1d4990b605540e24ae1c177ce (diff)
downloadrebar-5b4a87fa56135eae06cfaf514f341a3c552a4a40.tar.gz
qc: lift experimental notice
Diffstat (limited to 'src')
-rw-r--r--src/rebar_qc.erl5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/rebar_qc.erl b/src/rebar_qc.erl
index 80b2102..9fa2465 100644
--- a/src/rebar_qc.erl
+++ b/src/rebar_qc.erl
@@ -4,7 +4,7 @@
%%
%% rebar: Erlang Build Tools
%%
-%% Copyright (c) 2011-2014 Tuncer Ayaz
+%% Copyright (c) 2011-2016 Tuncer Ayaz
%%
%% Permission is hereby granted, free of charge, to any person obtaining a copy
%% of this software and associated documentation files (the "Software"), to deal
@@ -43,16 +43,13 @@
%% ===================================================================
qc(Config, _AppFile) ->
- ?CONSOLE("NOTICE: Using experimental 'qc' command~n", []),
run_qc(Config, qc_opts(Config)).
triq(Config, _AppFile) ->
- ?CONSOLE("NOTICE: Using experimental 'triq' command~n", []),
ok = load_qc_mod(triq),
run_qc(Config, qc_opts(Config), triq).
eqc(Config, _AppFile) ->
- ?CONSOLE("NOTICE: Using experimental 'eqc' command~n", []),
ok = load_qc_mod(eqc),
run_qc(Config, qc_opts(Config), eqc).