Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-28 | ssh: Speeded up ssh_options_SUITE a couple of minutes | Hans Nilsson | |
2016-04-28 | Merge branch 'bjorn/compiler/cuddle-with-tests' | Björn Gustavsson | |
* bjorn/compiler/cuddle-with-tests: compilation_SUITE: Use explicit exports Remove support for running tests on a separate Erlang node Move code from compilation_SUITE to beam_block_SUITE Move list comprehension tests to lc_SUITE Move catch tests to trycatch_SUITE Remove compilation_SUITE:long_string/1 Move pattern-matching tests to match_SUITE Remove toothless test compile_SUITE:missing_testheap/1 misc_SUITE: Add missing export of integer_encoding/0 Move test cases from compilation_SUITE to beam_utils_SUITE Move complex_guard/1 from compilation_SUITE to guard_SUITE Remove compilation_SUITE:guards/1 Move tests from compilation_SUITE to record_SUITE Move bit syntax test cases from compilation_SUITE to bs_match_SUITE Remove useless test case compilation_SUITE:otp_2141/1 compilation_SUITE: Run the Core linter for all compilations | |||
2016-04-28 | ssh: Update app-file | Hans Nilsson | |
2016-04-28 | ssh: Update version | Hans Nilsson | |
2016-04-27 | stdlib: Document maps:update_with/3,4 | Björn-Egil Dahlberg | |
2016-04-27 | stdlib: Add tests for maps:update_with/3,4 | Björn-Egil Dahlberg | |
2016-04-27 | stdlib: Add maps:update_with/3,4 | Björn-Egil Dahlberg | |
Maps equivalent to dict:update/3,4 | |||
2016-04-27 | erts: Add tests for maps:take/2 | Björn-Egil Dahlberg | |
2016-04-27 | stdlib: Document maps:take/2 | Björn-Egil Dahlberg | |
2016-04-27 | compilation_SUITE: Use explicit exports | Björn Gustavsson | |
With 'export_all' it is easy to add a new test case function and forget to add its name to the list of test cases to run. While we are it, remove unused functions and add the forgotten test case on_load_inline/1. | |||
2016-04-27 | Remove support for running tests on a separate Erlang node | Björn Gustavsson | |
It has not been used for ages. | |||
2016-04-27 | Move code from compilation_SUITE to beam_block_SUITE | Björn Gustavsson | |
2016-04-27 | Move list comprehension tests to lc_SUITE | Björn Gustavsson | |
2016-04-27 | Move catch tests to trycatch_SUITE | Björn Gustavsson | |
2016-04-27 | Remove compilation_SUITE:long_string/1 | Björn Gustavsson | |
long_string/1 was written to test that long string were handled efficiently in beam_asm. Strings used to be stored in the string table chunk, but are currently literals. There does not seem that this test case is likely to find any bugs. | |||
2016-04-27 | Move pattern-matching tests to match_SUITE | Björn Gustavsson | |
2016-04-27 | Remove toothless test compile_SUITE:missing_testheap/1 | Björn Gustavsson | |
missing_testheap/1 is no longer relevant for the following reasons: 1) Because of the literal pool introduced in R12, no test_heap instructions are needed in the guards. 2) beam_validator would abort the compilation if any needed test_heap instructions were missing. | |||
2016-04-27 | misc_SUITE: Add missing export of integer_encoding/0 | Björn Gustavsson | |
The integer_encoding/1 test is supposed to be run with a tighter timetrap ensure that encoding of integer in BEAM files is efficient enough. | |||
2016-04-27 | Move test cases from compilation_SUITE to beam_utils_SUITE | Björn Gustavsson | |
beam_utils_SUITE didn't exist when the two test cases were written. | |||
2016-04-27 | Merge branch 'xumingthepoet/maint/PR-1008/OTP-13516' | Zandra | |
* xumingthepoet/maint/PR-1008/OTP-13516: Update global_group_SUITE.erl Fix global_group.erl | |||
2016-04-27 | ssh: Channel request timer refactoring | Hans Nilsson | |
2016-04-27 | ssh: Idle-timer refactoring and some cosmetics and inlineing | Hans Nilsson | |
2016-04-27 | ssh: remove user_passwords from dumped state | Hans Nilsson | |
2016-04-27 | ssh: fix dialyzer warnings and errors | Hans Nilsson | |
2016-04-27 | ssh: Partly refactor and polish ssh_connection_handler | Hans Nilsson | |
2016-04-27 | ssh: change #state to #data | Hans Nilsson | |
2016-04-27 | ssh: refactor connection handler initialization | Hans Nilsson | |
2016-04-27 | ssh: Begin -spec for ssh_connection_handler | Hans Nilsson | |
2016-04-27 | ssh: Gen_statem rewrite of ssh_connection_handler | Hans Nilsson | |
Including misc fixes in surronding code as well as in test cases. | |||
2016-04-27 | Merge branch 'egil/erts/profile-erlang-boot' | Björn-Egil Dahlberg | |
2016-04-27 | ssh: fix same doc error as PR-1021 in another place where it also was wrong | Hans Nilsson | |
2016-04-27 | Documentation: example provided was not a valid term | Stuart Thackray | |
2016-04-27 | Merge branch 'c-rack/fix-erl-dist-protocol-typo/OTP-13517' | Rickard Green | |
* c-rack/fix-erl-dist-protocol-typo/OTP-13517: Fix typo in description of EPMD_DUMP_REQ response | |||
2016-04-27 | Fix typo in description of EPMD_DUMP_REQ response | Constantin Rack | |
According to the source code, there is a space before the newline for unused nodes and no space before the newline for active ones. In current documentation, it is exactly opposite. This commit fixes the documentation to match with source code. | |||
2016-04-27 | Merge branch 'maint-18' | Henrik Nord | |
Conflicts: OTP_VERSION lib/ssl/doc/src/ssl.xml lib/ssl/src/ssl_cipher.erl lib/ssl/src/tls_v1.erl lib/ssl/test/ssl_basic_SUITE.erl | |||
2016-04-27 | Move complex_guard/1 from compilation_SUITE to guard_SUITE | Björn Gustavsson | |
2016-04-27 | Remove compilation_SUITE:guards/1 | Björn Gustavsson | |
Obsoleted by guard_SUITE (especially literal_type_tests/1). | |||
2016-04-27 | Move tests from compilation_SUITE to record_SUITE | Björn Gustavsson | |
2016-04-27 | Move bit syntax test cases from compilation_SUITE to bs_match_SUITE | Björn Gustavsson | |
We used to put code that would crash the compiler into compilation_SUITE_data. That way we would have a failing test case to remind us to fix a bug. Nowadays, we generally fix the bug and write the test case at the same time. Therefore it makes more sense to put the test code directly into a test suite. Move out bin_syntax_1 through bin_syntax_5 test cases. Scrap bin_syntax_6 because it does not longer seems to be relevant. While we are it, rename the fun_shadow/1 test to size_shadow/1. Also make sure that the code produces the correct result. | |||
2016-04-27 | Remove useless test case compilation_SUITE:otp_2141/1 | Björn Gustavsson | |
2016-04-27 | compilation_SUITE: Run the Core linter for all compilations | Björn Gustavsson | |
2016-04-27 | Merge branch 'raimo/polish-gen_statem/OTP-13065' | Raimo Niskanen | |
* raimo/polish-gen_statem/OTP-13065: Fix hibernation subtlety | |||
2016-04-27 | Fix hibernation subtlety | Raimo Niskanen | |
2016-04-26 | Update preloaded init.beam | Björn-Egil Dahlberg | |
2016-04-26 | erts: Add profiling of startup | Björn-Egil Dahlberg | |
Usage: erl -profile_boot ... | |||
2016-04-26 | Update global_group_SUITE.erl | xuming | |
2016-04-26 | Fix global_group.erl | xuming | |
2016-04-26 | Merge branch 'eksperimental/typo_binary_matches/PR-1031' | Ingela Anderton Andin | |
* eksperimental/typo_binary_matches/PR-1031: Remove extra ">" in examples | |||
2016-04-26 | Remove extra ">" in examples | eksperimental | |
2016-04-26 | Updated OTP versionOTP-18.3.2 | Erlang/OTP | |