aboutsummaryrefslogtreecommitdiffstats
path: root/lib
AgeCommit message (Collapse)Author
2017-02-16asn1ct_gen: Polish the file headerBjörn Gustavsson
2017-02-15asn1ct_gen: Clean up generation of .hrl file headerBjörn Gustavsson
Note that put(currmod, Mod) is not needed because it has already been done by the caller.
2017-02-15asn1ct_gen: Clean up generation records in .hrl fileBjörn Gustavsson
2017-02-15asn1ct_gen: Clean up generation of -export directivesBjörn Gustavsson
2017-02-15asn1ct_gen: Clean up generation of valuesBjörn Gustavsson
2017-02-15Merge pull request #1321 from bjorng/bjorn/stdlib/tilde-s-for-atomsBjörn Gustavsson
Make "~s" fail for Unicode atoms
2017-02-15Merge branch 'fix-source-typos'Björn Gustavsson
* fix-source-typos: (25 commits) Fixed typos in system/doc Fixed typos in lib/xmerl Fixed typos in lib/wx Fixed typos in lib/stdlib Fixed typos in lib/snmp Fixed typos in lib/ssl Fixed typos in lib/ssh Fixed typos in PKCS-8.asn1 file Fixed typos in lib/parsetools Fixed typos in lib/orber Fixed typos in lib/mnesia Fixed typos in lib/megaco Fixed typos in lib/kernel Fixed typos in lib/jinterface Fixed typos in lib/inets Fixed typos in lib/hipe Fixed typos in lib/eunit Fixed typos in lib/erl_interface Fixed typos in lib/eldap Fixed typos in lib/edoc ...
2017-02-15Merge branch 'jur0/fix-function-name'Björn Gustavsson
* jur0/fix-function-name: Fix function name
2017-02-15Merge pull request #1340 from josevalim/jv-erl-expand-records-to-mapsBjörn Gustavsson
Use maps instead of dict in erl_expand_records
2017-02-15Merge pull request #1341 from josevalim/jv-compile-extra-chunksBjörn Gustavsson
Add extra_chunks option to compile OTP-14221
2017-02-14Merge branch 'maint'Hans Nilsson
2017-02-14Merge branch 'hans/ssh/cuddle_tests' into maintHans Nilsson
2017-02-14Fixed typos in lib/xmerlAndrew Dryga
2017-02-14Fixed typos in lib/wxAndrew Dryga
2017-02-14Fixed typos in lib/stdlibAndrew Dryga
2017-02-14Fixed typos in lib/snmpAndrew Dryga
2017-02-14Fixed typos in lib/sslAndrew Dryga
2017-02-14Fixed typos in lib/sshAndrew Dryga
2017-02-14Fixed typos in PKCS-8.asn1 fileAndrew Dryga
2017-02-14Fixed typos in lib/parsetoolsAndrew Dryga
2017-02-14Fixed typos in lib/orberAndrew Dryga
2017-02-14Fixed typos in lib/mnesiaAndrew Dryga
2017-02-14Fixed typos in lib/megacoAndrew Dryga
2017-02-14Fixed typos in lib/kernelAndrew Dryga
2017-02-14Fixed typos in lib/jinterfaceAndrew Dryga
2017-02-14Fixed typos in lib/inetsAndrew Dryga
2017-02-14Fixed typos in lib/hipeAndrew Dryga
2017-02-14Fixed typos in lib/eunitAndrew Dryga
2017-02-14Fixed typos in lib/erl_interfaceAndrew Dryga
2017-02-14Fixed typos in lib/eldapAndrew Dryga
2017-02-14Fixed typos in lib/edocAndrew Dryga
2017-02-14Fixed typos in lib/diameterAndrew Dryga
2017-02-14Fixed typos in lib/dialyzerAndrew Dryga
2017-02-14Fixed typos in lib/asn1Andrew Dryga
2017-02-14Merge branch 'maint'Ingela Anderton Andin
2017-02-14Merge branch 'ingela/ssl/handshake-match/ERL-347/OTP-14222' into maintIngela Anderton Andin
* ingela/ssl/handshake-match/ERL-347/OTP-14222: ssl: Test case robustness ssl: Avoid SSL/TLS hello format confusion
2017-02-13Merge branch 'bjorn/cuddle-with-tests'Björn Gustavsson
* bjorn/cuddle-with-tests: ets_tough_SUITE: Add the gen_server behavior ets_tough_SUITE: Remove functions that are never called ets_SUITE: Eliminate internal exports used for spawn/apply lists_SUITE: Run the droplast/1 test case random_{iolist,unicode_list}: Remove unused functions stdlib test: Eliminate export_all from re_SUITE and friends asn1_SUITE: Make sure that there are no unused functions Simplify running of asn1 app tests asn1_SUITE: Remove unused functions
2017-02-13ssl: Test case robustnessIngela Anderton Andin
2017-02-12Add extra_chunks option to compileJosé Valim
This allow languages such as Elixir and LFE to attach extra chunks to the .beam file without having to parse the beam file after compilation. This commit also cleans up the interface to beam_asm, allowing chunks to be passed from the compiler without a need to change beam_asm API on every new chunk.
2017-02-12Use maps instead of dict in erl_expand_recordsJosé Valim
2017-02-11Fix function nameJuraj Hlista
From camel case to snake case.
2017-02-10ets_tough_SUITE: Add the gen_server behaviorBjörn Gustavsson
Add a declaration to make it clear for tools that this module uses the gen_server behavior. While at it, also remove the totally unnecessary 'export_all' option.
2017-02-10ets_tough_SUITE: Remove functions that are never calledBjörn Gustavsson
2017-02-10ets_SUITE: Eliminate internal exports used for spawn/applyBjörn Gustavsson
In the future we will run xref to make sure that all functions that are exported are also used. Having internal exports only used for spawning or applying will mess with that.
2017-02-10lists_SUITE: Run the droplast/1 test caseBjörn Gustavsson
The testcase was never actually run.
2017-02-10random_{iolist,unicode_list}: Remove unused functionsBjörn Gustavsson
2017-02-10stdlib test: Eliminate export_all from re_SUITE and friendsBjörn Gustavsson
There is no actual need to use export_all, since very few functions are actually called from the outside. While we are it, remove the unused functions in run_pcre_tests.erl.
2017-02-10asn1_SUITE: Make sure that there are no unused functionsBjörn Gustavsson
Add xref_export_all/1 to make sure that all functions in the asn1_SUITE module are actually called (directly or indirectly).
2017-02-10Simplify running of asn1 app testsBjörn Gustavsson
Instead of initiating running of the app tests for asn1 from asn1_SUITE, put the tests in asn1_app_SUITE and let it take care of itself. While we are it, eliminate 'export_all' in the new module and use lists:keyfind/3 instead of lists:keysearch/3.
2017-02-10asn1_SUITE: Remove unused functionsBjörn Gustavsson
In 8a39672af4d9, the testX420/1 test case is no longer run. Remove the unused functions.