summaryrefslogtreecommitdiff
path: root/lib/stdlib/test/error_logger_h_SUITE.erl
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearErlang/OTP2023-02-141-1/+1
|
* Remove the file_io_servers ETS tableMichał Muskała2023-02-031-11/+11
| | | | | | | | | | This table was used to store Pids of files opened through the file server, however this data was never used by OTP itself, except for the debugging file:pid2file/1 function. Given the function is deprecated, we can skip the overhead of the central ETS table, and store the name in the file process itself. This makes the pid2file function more expensive, but as a deprecated debugging facility this is acceptable given reduction in overall memory overhead and synchronisation.
* Update copyright yearRickard Green2021-12-161-1/+1
|
* [stdlib] peer-ify application testsMaxim Fedorov2021-11-191-14/+4
| | | | | | | | | Replace usage of `test_server:start_node` with `?CT_PEER`. Additionally, disable local_time_to_universal_time_dst when running outside of MET/CET (otherwise it inevitably fails), and fix tar_SUITE test that fails when `compile` module is taken from the installed system (in that case compile.beam would be read-only, and after un-tarring mode will be read-write, making this test fail).
* Update copyright yearHenrik Nord2018-06-181-1/+1
|
* Test cuddle for loggerSiri Hansen2018-04-261-1/+4
|
* stdlib: Do not call erlang:get_stacktrace()Hans Bolinder2018-02-061-2/+1
|
* stdlib: add Unicode translation modifier in error_logger_tty_hSiri Hansen2017-09-051-5/+5
| | | | | Check if standard_io can handle Unicode, and if so add the 't' modifier to format strings.
* Write node info before log message body, not afterRichard Carlsson2016-11-291-2/+2
| | | | | | Make error_logger_tty_h insert node information for nonlocal messages before the message itself instead of after, both for readability and so as not to change the line termination property at the end of the message.
* Merge branch 'henrik/update-copyrightyear'Henrik Nord2016-04-131-1/+1
|\ | | | | | | | | * henrik/update-copyrightyear: update copyright-year
| * update copyright-yearHenrik Nord2016-03-151-1/+1
| |
* | stdlib: Fix logfile testcase for hipelibs testrunLukas Larsson2016-03-301-6/+13
|/
* Eliminate use of ?config() macroBjörn Gustavsson2016-03-091-4/+4
|
* Eliminate use of test_server:fail/0,1Björn Gustavsson2016-03-091-1/+1
|
* Eliminate use of test_server.hrl and test_server_line.hrlBjörn Gustavsson2016-02-171-1/+1
| | | | | | | 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.
* stdlib: Fix leaking files after error_logger:logfile(close)Dan Gudmundsson2015-09-171-0/+6
| | | | Introduced when changing state from tuple to record.
* Teach error_logger_tty_h to truncate big messagesBjörn Gustavsson2015-09-071-9/+32
| | | | | Add the possibility to truncate big messages to avoid running out of memory.
* Teach error_logger_file_h to truncate big messagesBjörn Gustavsson2015-09-071-46/+99
| | | | | Add the possibility to truncate big messages to avoid running out of memory.
* Add error_logger_h_SUITEBjörn Gustavsson2015-09-071-0/+324