diff options
author | Hans Bolinder <[email protected]> | 2016-10-19 10:37:15 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-10-19 10:37:15 +0200 |
commit | 76d5dda52726197f0e207e44e76b1acc6343474b (patch) | |
tree | 870848414f185628e1e920c64c4edb288206c533 /lib/stdlib/test | |
parent | 613f7c3a7b9e1764e045c1253d1cef4958a234c5 (diff) | |
parent | 9a7f521f9d6eba398af2e703863f9975911085a4 (diff) | |
download | otp-76d5dda52726197f0e207e44e76b1acc6343474b.tar.gz otp-76d5dda52726197f0e207e44e76b1acc6343474b.tar.bz2 otp-76d5dda52726197f0e207e44e76b1acc6343474b.zip |
Merge branch 'maint'
* maint:
dbg:fun2ms: allow empty list as head
Diffstat (limited to 'lib/stdlib/test')
-rw-r--r-- | lib/stdlib/test/ms_transform_SUITE.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/stdlib/test/ms_transform_SUITE.erl b/lib/stdlib/test/ms_transform_SUITE.erl index 1c5faa960b..f35013b1b2 100644 --- a/lib/stdlib/test/ms_transform_SUITE.erl +++ b/lib/stdlib/test/ms_transform_SUITE.erl @@ -296,6 +296,8 @@ basic_dbg(Config) when is_list(Config) -> compile_and_run(<<"dbg:fun2ms(fun([A,B]) -> bindings() end)">>), [{['$1','$2'],[],['$_']}] = compile_and_run(<<"dbg:fun2ms(fun([A,B]) -> object() end)">>), + [{[],[],[{return_trace}]}] = + compile_and_run(<<"dbg:fun2ms(fun([]) -> return_trace() end)">>), ok. %% Test calling of ets/dbg:fun2ms from the shell. |