aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/code_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2011-01-14 14:33:14 +0100
committerBjörn Gustavsson <[email protected]>2011-02-14 12:13:31 +0100
commit2edf8022d4269b403405f594bfc58bfec35dbee3 (patch)
treed4d60a4b0b1daf95efde7cf8496006dac84502fe /erts/emulator/test/code_SUITE.erl
parent6e396e67664be90a13c3119a0c766019dd889845 (diff)
downloadotp-2edf8022d4269b403405f594bfc58bfec35dbee3.tar.gz
otp-2edf8022d4269b403405f594bfc58bfec35dbee3.tar.bz2
otp-2edf8022d4269b403405f594bfc58bfec35dbee3.zip
Test more error cases for code:make_stub/1
Diffstat (limited to 'erts/emulator/test/code_SUITE.erl')
-rw-r--r--erts/emulator/test/code_SUITE.erl5
1 files changed, 4 insertions, 1 deletions
diff --git a/erts/emulator/test/code_SUITE.erl b/erts/emulator/test/code_SUITE.erl
index 33351a3cc9..5707de30d3 100644
--- a/erts/emulator/test/code_SUITE.erl
+++ b/erts/emulator/test/code_SUITE.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 1999-2009. All Rights Reserved.
+%% Copyright Ericsson AB 1999-2011. 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
@@ -320,6 +320,9 @@ make_stub(Config) when is_list(Config) ->
(catch code:make_stub_module(my_code_test,
bit_sized_binary(Code),
{[],[]})),
+ ?line {'EXIT',{badarg,_}} =
+ (catch code:make_stub_module(my_code_test_with_wrong_name,
+ Code, {[],[]})),
ok.
make_stub_many_funs(Config) when is_list(Config) ->