aboutsummaryrefslogtreecommitdiffstats
path: root/lib/et/test/et_SUITE.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2016-05-09 10:54:26 +0200
committerBjörn-Egil Dahlberg <[email protected]>2016-05-09 10:54:26 +0200
commit7bc46f866e0e90fa6282a2893337be0c4d8d8989 (patch)
tree6be1cd8e60f3a7c9f302ac14bc89ed61eb856bcf /lib/et/test/et_SUITE.erl
parent36b79cc56bd681e324a24237a89d560bb7cb0f88 (diff)
parent5449073a9a78b0b0a387852b6c596a9ab9dea1bd (diff)
downloadotp-7bc46f866e0e90fa6282a2893337be0c4d8d8989.tar.gz
otp-7bc46f866e0e90fa6282a2893337be0c4d8d8989.tar.bz2
otp-7bc46f866e0e90fa6282a2893337be0c4d8d8989.zip
Merge branch 'egil/et/fix-trace-tags/OTP-13545'
* egil/et/fix-trace-tags/OTP-13545: et: Update runtime dependencies et: Update gc trace tags in selector et: Remove unnecessary boilerplate in tests
Diffstat (limited to 'lib/et/test/et_SUITE.erl')
-rw-r--r--lib/et/test/et_SUITE.erl24
1 files changed, 4 insertions, 20 deletions
diff --git a/lib/et/test/et_SUITE.erl b/lib/et/test/et_SUITE.erl
index 4a26b46439..199aff43a8 100644
--- a/lib/et/test/et_SUITE.erl
+++ b/lib/et/test/et_SUITE.erl
@@ -16,7 +16,8 @@
%%
-module(et_SUITE).
--compile([export_all]).
+-export([suite/0, all/0]).
+-export([app/1, appup/1]).
-include_lib("common_test/include/ct.hrl").
suite() ->
@@ -25,27 +26,10 @@ suite() ->
all() ->
[app, appup].
-groups() ->
- [].
-
-init_per_suite(Config) ->
- Config.
-
-end_per_suite(_Config) ->
- ok.
-
-init_per_group(_GroupName, Config) ->
- Config.
-
-end_per_group(_GroupName, Config) ->
- Config.
-
-app() ->
- [{doc, "Test that the et app file is ok"}].
+%% Test that the et app file is ok
app(Config) when is_list(Config) ->
ok = ?t:app_test(et).
-appup() ->
- [{doc, "Test that the et appup file is ok"}].
+%% Test that the et appup file is ok
appup(Config) when is_list(Config) ->
ok = ?t:appup_test(et).