Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-04 | Add ct:get_progname/0 | Richard Carlsson | |
This replaces all uses of lib:progname/0 in tests. | |||
2018-05-02 | Merge branch 'john/erts/fix-heart-command-overflow/OTP-15034/ERIERL-166' ↵ | Erlang/OTP | |
into maint-20 * john/erts/fix-heart-command-overflow/OTP-15034/ERIERL-166: heart: Use ntohs instead of manual conversion # Conflicts: # lib/kernel/test/heart_SUITE.erl | |||
2018-04-24 | heart: Use ntohs instead of manual conversion | John Högberg | |
Multiplying a signed char by 256 is undefined behavior and caused problems on some platforms when the length was long enough. We could cast it to an unsigned int to make it work, but it's best not to reinvent the wheel. Fixes OTP-15034 | |||
2016-06-14 | Merge branch 'dotsimon/erts/heart_no_kill/OTP-13650' | Lukas Larsson | |
* dotsimon/erts/heart_no_kill/OTP-13650: erts: Fix HEART_NO_KILL logic | |||
2016-06-10 | erts: Fix HEART_NO_KILL logic | Lukas Larsson | |
2016-06-07 | Merge branch 'dotsimon/erts/heart_no_kill/OTP-13650' | Lukas Larsson | |
* dotsimon/erts/heart_no_kill/OTP-13650: erts: make HEART_NO_KILL have to be set to TRUE Don't kill old erlang if HEART_NO_KILL is set Conflicts: lib/kernel/doc/src/heart.xml | |||
2016-06-03 | erts: make HEART_NO_KILL have to be set to TRUE | Lukas Larsson | |
2016-06-01 | Don't kill old erlang if HEART_NO_KILL is set | Simon Cornish | |
If the environment variable HEART_NO_KILL is set then heart won't kill the old erlang process. This is desirable if the command executed by heart takes care of this. | |||
2016-04-13 | Merge branch 'henrik/update-copyrightyear' | Henrik Nord | |
* henrik/update-copyrightyear: update copyright-year | |||
2016-03-23 | heart_SUITE: Increase timeout in restart/1 | Björn Gustavsson | |
2016-03-23 | heart_SUITE: Use unique node names | Björn Gustavsson | |
Avoid interference between test cases. | |||
2016-03-15 | update copyright-year | Henrik Nord | |
2016-03-10 | Eliminate use of the ?t macro | Björn Gustavsson | |
2016-03-10 | Eliminate use of doc and suite clauses | Björn Gustavsson | |
Those clause are obsolete and never used by common_test. | |||
2016-03-10 | Eliminate use test_server:format() | Björn Gustavsson | |
Replace with io:format/2 or ct:pal/3. | |||
2016-03-10 | Eliminate use of test_server:sleep/1 | Björn Gustavsson | |
2016-03-09 | Eliminate use of test_server:fail/0,1 | Björn Gustavsson | |
2016-03-09 | Eliminate use of ?config() macro | Björn Gustavsson | |
?config is ugly and not recommended. Use proplists:get_value/2 instead. | |||
2016-03-09 | Modernize timetraps | Björn Gustavsson | |
2016-02-25 | Merge branch 'maint' | Björn-Egil Dahlberg | |
Conflicts: erts/emulator/beam/erl_alloc.types erts/emulator/beam/erl_bif_info.c erts/emulator/beam/erl_process.c erts/preloaded/ebin/erts_internal.beam | |||
2016-02-25 | kernel: Clarify heart option | Björn-Egil Dahlberg | |
Change scheduler responsiveness to 'check_schedulers'. | |||
2016-02-23 | kernel: Add heart options test | Björn-Egil Dahlberg | |
2016-02-17 | Eliminate use of test_server.hrl and test_server_line.hrl | Björn Gustavsson | |
As a first step to removing the test_server application as as its own separate application, change the inclusion of test_server.hrl to an inclusion of ct.hrl and remove the inclusion of test_server_line.hrl. | |||
2016-02-16 | kernel: Add heart callback test | Björn-Egil Dahlberg | |
2015-06-18 | Change license text to APLv2 | Bruce Yinhe | |
2015-04-30 | kernel: Use module erl_anno | Hans Bolinder | |
2014-03-28 | kernel: tweak tests | Dan Gudmundsson | |
heart tests decrease atom table size so node crashes faster Fix timetrap and sync | |||
2013-01-08 | test: Ignore cores in debug build for crash dumps | Björn-Egil Dahlberg | |
2012-11-23 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2012-11-23 | Update copyright years | Björn-Egil Dahlberg | |
2012-10-24 | Merge branch 'maint' | Björn-Egil Dahlberg | |
Conflicts: erts/etc/common/heart.c | |||
2012-10-23 | test: Relax timeouts for heart_SUITE | Björn-Egil Dahlberg | |
Timeouts were set too narrow and timedout on slow machines | |||
2012-10-18 | test: Add test for heart restart on crash | Björn-Egil Dahlberg | |
* node_start_soon_after_crash tests that heart restarts beam upon a crash and only lets beam write its crash dump for a certain amount of time | |||
2012-10-16 | test: Add test for heart restart on crash | Björn-Egil Dahlberg | |
* node_start_immediately_after_crash tests that heart restarts beam upon a crash and will not generate a crash dump | |||
2012-10-15 | test: Refactor away ?line macros in heart_SUITE | Björn-Egil Dahlberg | |
2012-07-19 | kernel: Remove VxWorks from tests | Björn-Egil Dahlberg | |
2011-04-06 | heart: remove garbage appended to heart command | Michael Santos | |
heart:get_cmd/0 is documented to return an empty string if the command is cleared. get_cmd/0 returns 2 extra bytes: 1 byte for the trailing null, 1 byte from the op (the op is an unsigned char and 2 bytes are allocated for it in the returned buffer). 1> heart:get_cmd(). {ok,[0,0]} 2> heart:set_cmd("echo hello"). ok 3> heart:get_cmd(). {ok,[101,99,104,111,32,104,101,108,108,111,0,0]} 4> heart:clear_cmd(). ok 5> heart:get_cmd(). {ok,[0,99]} | |||
2011-03-11 | Update copyright years | Björn-Egil Dahlberg | |
2011-02-17 | Rename Suite Callback to Common Test Hook | Lukas Larsson | |
2011-02-17 | Fix formatting for kernel | Lukas Larsson | |
2011-02-17 | Add init_per_suite and end_per_suite | Lukas Larsson | |
2011-02-17 | Add ts_install_scb to suite/0 | Lukas Larsson | |
2011-02-17 | Update kernel tests to conform with common_test standard | Lukas Larsson | |
2011-02-17 | Update all fin_per_testcase to end_per_testcase. | Lukas Larsson | |
2010-01-31 | Merge branch 'bg/cleanup-tests' into ccase/r13b04_dev | Erlang/OTP | |
* bg/cleanup-tests: file_SUITE: eliminate a warning for an unused variable kernel tests: modernize guard tests unicode_SUITE: replace deprecated concat_binary/1 with list_to_binary/1 stdlib tests: modernize guard tests Test suites: fix creation of Emakefiles | |||
2010-01-29 | kernel tests: modernize guard tests | Björn Gustavsson | |
2009-11-20 | The R13B03 release.OTP_R13B03 | Erlang/OTP | |