diff options
author | Bruce Yinhe <[email protected]> | 2014-11-10 09:34:51 +0100 |
---|---|---|
committer | Bruce Yinhe <[email protected]> | 2014-11-10 09:34:51 +0100 |
commit | e25d2283e7607224b94d248ac99ba7a2f3d774c6 (patch) | |
tree | 1dd0631389a3d9ddf72c012699e344ac32a1d4a6 /erts/emulator/test/nif_SUITE.erl | |
parent | 7b803c5fbc69458d3e1dba8a88322c2306f77e44 (diff) | |
parent | 6af3ab986ac6561db52b79fb7a6f646c4314c4e2 (diff) | |
download | otp-e25d2283e7607224b94d248ac99ba7a2f3d774c6.tar.gz otp-e25d2283e7607224b94d248ac99ba7a2f3d774c6.tar.bz2 otp-e25d2283e7607224b94d248ac99ba7a2f3d774c6.zip |
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/test/nif_SUITE.erl')
-rw-r--r-- | erts/emulator/test/nif_SUITE.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/test/nif_SUITE.erl b/erts/emulator/test/nif_SUITE.erl index 14e6585220..4560077a51 100644 --- a/erts/emulator/test/nif_SUITE.erl +++ b/erts/emulator/test/nif_SUITE.erl @@ -1564,6 +1564,8 @@ dirty_nif(Config) when is_list(Config) -> Val2 = "Erlang", Val3 = list_to_binary([Val2, 0]), {Val1, Val2, Val3} = call_dirty_nif(Val1, Val2, Val3), + LargeArray = lists:duplicate(1000, ok), + LargeArray = call_dirty_nif_zero_args(), ok catch error:badarg -> @@ -1740,6 +1742,7 @@ call_nif_schedule(_,_) -> ?nif_stub. call_dirty_nif(_,_,_) -> ?nif_stub. send_from_dirty_nif(_) -> ?nif_stub. call_dirty_nif_exception() -> ?nif_stub. +call_dirty_nif_zero_args() -> ?nif_stub. %% maps is_map_nif(_) -> ?nif_stub. |