aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2010-06-09Add run_test program for Common TestPeter Andersson
Common Test may now be started with the program run_test instead of the legacy shell script with the same name. Minor updates have also been made to the Webtool application.
2010-06-09Documentation updateAndrey Pampukha
2010-06-09Move 'node_start' and 'eval' terms into new 'init' termAndrey Pampukha
node_start+eval -> init(node_start, eval) Also include some documentation updates.
2010-06-09Document ct_slave and 'eval' termsAndrey Pampukha
2010-06-09Change monitor_master option to false by defaultAndrey Pampukha
2010-06-09Improve eval and node_start and add new options for ct_slaveAndrey Pampukha
2010-06-09Modify cookie handling in ct_slaveAndrey Pampukha
2010-06-09Introduce ct_slave moduleAndrey Pampukha
2010-06-09Add test suites for ct_masterAndrey Pampukha
Also includes minor documentation updates.
2010-06-09Separate config and user_config in test specificationsAndrey Pampukha
This is now properly supported in the ct_run.
2010-06-09Add support for user_config in ct_masterAndrey Pampukha
2010-06-09Remove ugly -compile(export_all)Andrey Pampukha
2010-06-09Bug fix: ["config.txt"] /= "config.txt"Andrey Pampukha
2010-06-09Add functions for adding and removing config handlersAndrey Pampukha
This is a draft version.
2010-06-09Update test specificationsAndrey Pampukha
2010-06-09Replace own has_element/2 with lists:config/2Andrey Pampukha
2010-06-09Fix problem with disappearing variables and aliasesAndrey Pampukha
2010-06-09Rename suites for ct_config and add tests for disappearing variablesAndrey Pampukha
Tests for disappearing variables added to ct_dynamic_SUITE.
2010-06-09Change spelling, phrasing and structure in documentationAndrey Pampukha
2010-06-09Eliminate compilation warningAndrey Pampukha
Modified debug function never called.
2010-06-09Changed return value tags for config file handlingAndrey Pampukha
Return value tags modified and various documentation updates made (work in progress).
2010-06-09Support running cover on common_test test suitesAndrey Pampukha
2010-06-09Remove dialyzer warningAndrey Pampukha
2010-06-09Remove non-breaking spaceAndrey Pampukha
Some editors get confused by illegal break character.
2010-06-09Add tests for test specificationsAndrey Pampukha
2010-06-09Add test suites for configurationAndrey Pampukha
2010-06-09Bug fix: ct_config_xml now returns items in right orderAndrey Pampukha
2010-06-09Fix problems with test specificationsAndrey Pampukha
Work in progress...
2010-06-09Allow callbacks to take any list as parameterAndrey Pampukha
2010-06-09Added config test suite for CTAndrey Pampukha
2010-06-09Implement reloading of the config dataAndrey Pampukha
2010-06-09Remove configuration handling from ct_util completelyAndrey Pampukha
2010-06-09Make ct_xml_config smarterPeter Andersson
2010-06-09Add support for user config in common_testAndrey Pampukha
Added: 1. ct_config, ct_config_plain and ct_config_xml modules. 2. support for {userconfig, {Callback, ConfigFiles}} parameter to ct:run_test/1 3. support for "-userconfig Callback ConfigFiles and OtherCallback ConfigFiles" parameter to the run_test script
2010-06-09Update preloaded filesRaimo Niskanen
2010-06-09Merge branch 'pan/otp_8698_file_typespecs' into devErlang/OTP
* pan/otp_8698_file_typespecs: Change typespecs for file.erl to match reality
2010-06-09OTP-8696: Update performance chapterMicael Karlberg
2010-06-09Merge branch 'pan/otp_8683_compiler_warnings' into HEADErlang/OTP
* pan/otp_8683_compiler_warnings: Remove (harmless) warning regarding auto-imported BIF max/2 Update primary bootstrap Correct warnings and errors for auto-imported bif clashes Conflicts: bootstrap/lib/stdlib/ebin/erl_lint.beam
2010-06-09Merge branch 'pan/otp_8692_static_config_cache' into devErlang/OTP
* pan/otp_8692_static_config_cache: Teach rc.sh to use tail -n +2 instead of tail +2 Make win32.config.cache static and copied when doing otp_build configure
2010-06-09Merge branch 'pan/otp_8669_doc_autoimported' into devErlang/OTP
* pan/otp_8669_doc_autoimported: Change documentation for erlang:min/2,max/2 and port_command/3 to OTP-8669 erlang:min, erlang:max and erlang:port_command/3 autoimported The recently added BIFs erlang:min/2, erlang:max/2 and erlang:port_command/3 are now auto-imported (as they were originally intended to be). Due to the recent compiler change (OTP-8579), the only impact on old code defining it's own min/2, max/2 or port_command/3 functions will be a warning, the local functions will still be used. The warning can be removed by using -compile({no_auto_import,[min/2,max/2,port_command/3]}). in the source file.
2010-06-09Merge branch 'ks/dialyzer-R14-fixes' into devErlang/OTP
* ks/dialyzer-R14-fixes: Various changes to dialyzer-related files for R14. OTP-8699 ks/dialyzer-R14-fixes Various changes to dialyzer-related files for R14. - Dialyzer properly supports the new attribute -export_type and checks that remote types only refer to exported types. A warning is produced if some files/applications refer to types defined in modules which are neither in the PLT nor in the analyzed applications. - Support for detecting data races involving whereis/1 and unregister/1. - More precise identification of the reason(s) why a record construction violates the types declared for its fields. - Fixed bug in the handling of the 'or' guard. - Better handling of the erlang:element/2 BIF. - Complete handling of Erlang BIFs.
2010-06-09OTP-8700 crypto:dss_sign and dss_verify with pre-hashed digest.Sverker Eriksson
New variants of crypto:dss_sign and crypto:dss_verify with an extra argument to control how the digest is calculated.
2010-06-09Remove (harmless) warning regarding auto-imported BIF max/2Patrik Nyblom
2010-06-09Update primary bootstrapPatrik Nyblom
2010-06-09Correct warnings and errors for auto-imported bif clashesPatrik Nyblom
warn_unused_import works correctly (does not give warnings when overridden). Local call in guard gives its own error pointing out the local/imported function. Use of the phrase "overridden auto-imported bif" instead of "redefined auto-imported bif" in textual error messages.
2010-06-09Support new crypto functionIngela Anderton Andin
2010-06-09Prepare ReleaseDan Gudmundsson
2010-06-08OTP-7907: [httpc|httpd] - Now allow the use of the "new" ssl.Micael Karlberg
OTP-8564: Update deprecated status. OTP-8573: Inets mod_alias URL rewrite.
2010-06-08Change typespecs for file.erl to match realityPatrik Nyblom
2010-06-08OTP-8686 Bugfix net_kernelHans Bolinder
A bug introduced in kernel-2.13.5.3 has been fixed.