diff options
author | Kostis Sagonas <[email protected]> | 2016-12-06 13:04:06 +0100 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2016-12-06 13:04:06 +0100 |
commit | 95b37021b070703d4b3252bf7c1da35581775ae1 (patch) | |
tree | ab35432933d8807c95a80b5b8e4b6a864c8eaeae /lib/hipe/test/hipe_SUITE.erl | |
parent | 86233038e1d49adb6387b810a7ba2487b15d6a02 (diff) | |
download | otp-95b37021b070703d4b3252bf7c1da35581775ae1.tar.gz otp-95b37021b070703d4b3252bf7c1da35581775ae1.tar.bz2 otp-95b37021b070703d4b3252bf7c1da35581775ae1.zip |
Substitute export_all with proper export
Diffstat (limited to 'lib/hipe/test/hipe_SUITE.erl')
-rw-r--r-- | lib/hipe/test/hipe_SUITE.erl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/hipe/test/hipe_SUITE.erl b/lib/hipe/test/hipe_SUITE.erl index a5b3924aa8..b9adb660f2 100644 --- a/lib/hipe/test/hipe_SUITE.erl +++ b/lib/hipe/test/hipe_SUITE.erl @@ -16,7 +16,11 @@ %% -module(hipe_SUITE). --compile([export_all]). +-export([all/0, groups/0, + init_per_suite/1, end_per_suite/1, + init_per_group/2, end_per_group/2, + app/0, app/1, appup/0, appup/1]). + -include_lib("common_test/include/ct.hrl"). all() -> |