aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/plt_tests_SUITE.erl
diff options
context:
space:
mode:
authorStavros Aronis <[email protected]>2011-02-18 20:02:00 +0200
committerStavros Aronis <[email protected]>2011-02-28 17:13:50 +0200
commit059ca05caa95d91411c071c8542cef400a066e17 (patch)
tree073196bc28cc9f7ad4c46941d58351d14121ced8 /lib/dialyzer/test/plt_tests_SUITE.erl
parent8bbf860b2f21571a4675a1a031cb95f25a10f391 (diff)
downloadotp-059ca05caa95d91411c071c8542cef400a066e17.tar.gz
otp-059ca05caa95d91411c071c8542cef400a066e17.tar.bz2
otp-059ca05caa95d91411c071c8542cef400a066e17.zip
Major restructure of dialyzer's testsuite
Generation of the PLT is now performed without using OS commands. We still try to copy in the default plt to make small scale testing efficient. If generation/checking fails, suites are skipped except plt_tests_SUITE which contains a bare PLT check that fails normally.
Diffstat (limited to 'lib/dialyzer/test/plt_tests_SUITE.erl')
-rw-r--r--lib/dialyzer/test/plt_tests_SUITE.erl21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/dialyzer/test/plt_tests_SUITE.erl b/lib/dialyzer/test/plt_tests_SUITE.erl
new file mode 100644
index 0000000000..bf45020340
--- /dev/null
+++ b/lib/dialyzer/test/plt_tests_SUITE.erl
@@ -0,0 +1,21 @@
+%% This suite is the only hand made and simply
+%% checks if we can build a plt.
+
+-module(plt_tests_SUITE).
+
+-include("ct.hrl").
+-include("dialyzer_test_constants.hrl").
+
+-export([suite/0, all/0, build_plt/1]).
+
+suite() ->
+ [{timetrap, ?plt_timeout}].
+
+all() -> [build_plt].
+
+build_plt(Config) ->
+ OutDir = ?config(priv_dir, Config),
+ case dialyzer_common:check_plt(OutDir) of
+ ok -> ok;
+ fail -> ct:fail(plt_build_fail)
+ end.