aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/core_SUITE.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compiler/test/core_SUITE.erl')
-rw-r--r--lib/compiler/test/core_SUITE.erl5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/compiler/test/core_SUITE.erl b/lib/compiler/test/core_SUITE.erl
index 0a52dcdc4a..47d7f1aa51 100644
--- a/lib/compiler/test/core_SUITE.erl
+++ b/lib/compiler/test/core_SUITE.erl
@@ -23,7 +23,7 @@
init_per_testcase/2,end_per_testcase/2,
dehydrated_itracer/1,nested_tries/1,
make_effect_seq/1,eval_is_boolean/1,
- unsafe_case/1]).
+ unsafe_case/1,nomatch_shadow/1]).
-include_lib("test_server/include/test_server.hrl").
@@ -44,7 +44,7 @@ suite() -> [{ct_hooks,[ts_install_cth]}].
all() ->
test_lib:recompile(?MODULE),
[dehydrated_itracer,nested_tries,make_effect_seq,
- eval_is_boolean,unsafe_case].
+ eval_is_boolean,unsafe_case,nomatch_shadow].
groups() ->
[].
@@ -67,6 +67,7 @@ end_per_group(_GroupName, Config) ->
?comp(make_effect_seq).
?comp(eval_is_boolean).
?comp(unsafe_case).
+?comp(nomatch_shadow).
try_it(Mod, Conf) ->
Src = filename:join(?config(data_dir, Conf), atom_to_list(Mod)),