diff options
author | Björn Gustavsson <[email protected]> | 2017-12-15 12:41:03 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-12-15 12:41:03 +0100 |
commit | 6266f0a257f13b71287e92c54903e22c2f92ba96 (patch) | |
tree | 04ae69e816ed91f592472decf27007c7fe18cc40 /lib/compiler/test/guard_SUITE.erl | |
parent | 056488f7d978efcbd70d6c23cde32ef6f2dc5f49 (diff) | |
parent | 21dd6e55877832f26a8d56f6874d6f86f689f064 (diff) | |
download | otp-6266f0a257f13b71287e92c54903e22c2f92ba96.tar.gz otp-6266f0a257f13b71287e92c54903e22c2f92ba96.tar.bz2 otp-6266f0a257f13b71287e92c54903e22c2f92ba96.zip |
Merge branch 'bjorn/compiler/coverage'
* bjorn/compiler/coverage:
beam_utils: Refactor combine_alloc_lists() to cover more lines
map_SUITE: Cover beam_utils:bif_to_test/3
beam_disasm: Remove support for obsolete instructions
guard_SUITE: Test is_bitstring/1 and is_map/1 on literals
Diffstat (limited to 'lib/compiler/test/guard_SUITE.erl')
-rw-r--r-- | lib/compiler/test/guard_SUITE.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/compiler/test/guard_SUITE.erl b/lib/compiler/test/guard_SUITE.erl index 7d2d58d5af..0d6f8c6f98 100644 --- a/lib/compiler/test/guard_SUITE.erl +++ b/lib/compiler/test/guard_SUITE.erl @@ -1621,7 +1621,9 @@ type_tests() -> is_reference, is_port, is_binary, - is_function]. + is_bitstring, + is_function, + is_map]. basic_andalso_orelse(Config) when is_list(Config) -> T = id({type,integers,23,42}), |