aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/pmod_SUITE.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2010-02-17 14:37:25 +0000
committerErlang/OTP <[email protected]>2010-02-17 14:37:25 +0000
commit91de9d0670c6fe1cff08cefa6e1c396effba47b8 (patch)
treebbd88dc451354327b8ab7d3b1c16f54c7994b662 /lib/compiler/test/pmod_SUITE.erl
parentf6ff2d87c62fd56b9f948586b84b9f1a3f69fd08 (diff)
downloadotp-91de9d0670c6fe1cff08cefa6e1c396effba47b8.tar.gz
otp-91de9d0670c6fe1cff08cefa6e1c396effba47b8.tar.bz2
otp-91de9d0670c6fe1cff08cefa6e1c396effba47b8.zip
OTP-8447 Bit string comprehensions can now be used in parameterized
modules. (Thanks to Jebu Ittiachen.)
Diffstat (limited to 'lib/compiler/test/pmod_SUITE.erl')
-rw-r--r--lib/compiler/test/pmod_SUITE.erl24
1 files changed, 15 insertions, 9 deletions
diff --git a/lib/compiler/test/pmod_SUITE.erl b/lib/compiler/test/pmod_SUITE.erl
index c8919e5539..293e110c45 100644
--- a/lib/compiler/test/pmod_SUITE.erl
+++ b/lib/compiler/test/pmod_SUITE.erl
@@ -1,31 +1,31 @@
%%
%% %CopyrightBegin%
-%%
-%% Copyright Ericsson AB 2004-2009. All Rights Reserved.
-%%
+%%
+%% Copyright Ericsson AB 2004-2010. All Rights Reserved.
+%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
%% compliance with the License. You should have received a copy of the
%% Erlang Public License along with this software. If not, it can be
%% retrieved online at http://www.erlang.org/.
-%%
+%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and limitations
%% under the License.
-%%
+%%
%% %CopyrightEnd%
%%
-module(pmod_SUITE).
-export([all/1,init_per_testcase/2,fin_per_testcase/2,
- basic/1]).
+ basic/1, otp_8447/1]).
-include("test_server.hrl").
all(suite) ->
test_lib:recompile(?MODULE),
- [basic].
+ [basic, otp_8447].
init_per_testcase(Case, Config) when is_atom(Case), is_list(Config) ->
Dog = test_server:timetrap(?t:minutes(1)),
@@ -38,8 +38,8 @@ fin_per_testcase(Case, Config) when is_atom(Case), is_list(Config) ->
basic(Config) when is_list(Config) ->
?line basic_1(Config, []),
- ?line basic_1(Config, [inline]),
- ?line basic_1(Config, [{inline,500}]),
+% ?line basic_1(Config, [inline]),
+% ?line basic_1(Config, [{inline,500},inline]),
ok.
basic_1(Config, Opts) ->
@@ -78,6 +78,12 @@ basic_1(Config, Opts) ->
ok.
+otp_8447(Config) when is_list(Config) ->
+ ?line P = pmod_basic:new(foo),
+ ?line [0,0,1,1,1,0,0,1] = P:bc1(),
+ ?line <<10:4>> = P:bc2(),
+ ok.
+
compile_load(Module, Conf, Opts) ->
?line Dir = ?config(data_dir,Conf),
?line Src = filename:join(Dir, atom_to_list(Module)),