diff options
| author | Björn Gustavsson <[email protected]> | 2016-09-05 11:43:38 +0200 |
|---|---|---|
| committer | Björn Gustavsson <[email protected]> | 2016-09-05 11:43:38 +0200 |
| commit | b501396623e80a798fba94a428646461aabe6796 (patch) | |
| tree | d426e3b61718b3e641553cd70157c986b99e5251 /lib/compiler/test/test_lib.erl | |
| parent | 727f08889ab2096b540d466858ded1271bf261a8 (diff) | |
| parent | 0baa07cdf2754748bbc2d969bf83f08c0976fb78 (diff) | |
| download | otp-b501396623e80a798fba94a428646461aabe6796.tar.gz otp-b501396623e80a798fba94a428646461aabe6796.tar.bz2 otp-b501396623e80a798fba94a428646461aabe6796.zip | |
Merge branch 'bjorn/lc-overridden-bif/OTP-13690'
* bjorn/lc-overridden-bif/OTP-13690:
Fix overridden BIFs
Don't crash when obsolete guard overrides local function
Diffstat (limited to 'lib/compiler/test/test_lib.erl')
| -rw-r--r-- | lib/compiler/test/test_lib.erl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/compiler/test/test_lib.erl b/lib/compiler/test/test_lib.erl index d5b79e2357..8954a9f5fb 100644 --- a/lib/compiler/test/test_lib.erl +++ b/lib/compiler/test/test_lib.erl @@ -22,7 +22,10 @@ -include_lib("common_test/include/ct.hrl"). -compile({no_auto_import,[binary_part/2]}). -export([id/1,recompile/1,parallel/0,uniq/0,opt_opts/1,get_data_dir/1, - is_cloned_mod/1,smoke_disasm/1,p_run/2,binary_part/2]). + is_cloned_mod/1,smoke_disasm/1,p_run/2]). + +%% Used by test case that override BIFs. +-export([binary_part/2,binary/1]). id(I) -> I. @@ -151,3 +154,7 @@ p_run_loop(Test, List, N, Refs0, Errors0, Ws0) -> %% This is for the misc_SUITE:override_bif testcase binary_part(_A,_B) -> dummy. + +%% This is for overridden_bif_SUITE. +binary(N) -> + N rem 10 =:= 0. |
