diff options
author | Björn Gustavsson <[email protected]> | 2016-04-21 12:07:20 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-04-27 10:29:25 +0200 |
commit | c8385ccb0e9f57fcd6c2cf0c3a16b1eb4e2a2b9f (patch) | |
tree | 6aaef251c02df186b5175c1a80e91ade5fe0e199 | |
parent | 856e0abc93b1234ccb8cb48383b4fc07a0624b4c (diff) | |
download | otp-c8385ccb0e9f57fcd6c2cf0c3a16b1eb4e2a2b9f.tar.gz otp-c8385ccb0e9f57fcd6c2cf0c3a16b1eb4e2a2b9f.tar.bz2 otp-c8385ccb0e9f57fcd6c2cf0c3a16b1eb4e2a2b9f.zip |
Remove useless test case compilation_SUITE:otp_2141/1
-rw-r--r-- | lib/compiler/test/compilation_SUITE.erl | 3 | ||||
-rw-r--r-- | lib/compiler/test/compilation_SUITE_data/otp_2141.erl | 25 |
2 files changed, 1 insertions, 27 deletions
diff --git a/lib/compiler/test/compilation_SUITE.erl b/lib/compiler/test/compilation_SUITE.erl index fdb264469a..1f64da96ff 100644 --- a/lib/compiler/test/compilation_SUITE.erl +++ b/lib/compiler/test/compilation_SUITE.erl @@ -43,7 +43,7 @@ groups() -> beam_compiler_8,beam_compiler_9,beam_compiler_10, beam_compiler_11,beam_compiler_12, nested_tuples_in_case_expr,otp_2330,guards, - {group,vsn},otp_2380,otp_2141,otp_2173,otp_4790, + {group,vsn},otp_2380,otp_2173,otp_4790, const_list_256,bin_syntax_1,bin_syntax_2, bin_syntax_3,bin_syntax_4,bin_syntax_5,bin_syntax_6, live_var,convopts, @@ -95,7 +95,6 @@ end_per_group(_GroupName, Config) -> ?comp(otp_2330). ?comp(otp_2380). -?comp(otp_2141). ?comp(otp_2173). ?comp(otp_4790). ?comp(otp_5235). diff --git a/lib/compiler/test/compilation_SUITE_data/otp_2141.erl b/lib/compiler/test/compilation_SUITE_data/otp_2141.erl deleted file mode 100644 index 4737d0972e..0000000000 --- a/lib/compiler/test/compilation_SUITE_data/otp_2141.erl +++ /dev/null @@ -1,25 +0,0 @@ -%% -%% %CopyrightBegin% -%% -%% Copyright Ericsson AB 1998-2016. All Rights Reserved. -%% -%% Licensed under the Apache License, Version 2.0 (the "License"); -%% you may not use this file except in compliance with the License. -%% You may obtain a copy of the License at -%% -%% http://www.apache.org/licenses/LICENSE-2.0 -%% -%% Unless required by applicable law or agreed to in writing, software -%% distributed under the License is distributed on an "AS IS" BASIS, -%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -%% See the License for the specific language governing permissions and -%% limitations under the License. -%% -%% %CopyrightEnd% -%% --module(otp_2141). --export([otp_2141/0]). - - -otp_2141() -> - ok. |