Age | Commit message (Collapse) | Author |
|
The same checks are also performed by the Dialyzer.
|
|
* bjorn/compiler/unicode-atoms/OTP-14285:
Correct compile_SUITE:core_roundtrip/1
Atoms in Core Erlang must be encoded in UTF-8
|
|
|
|
Seems to solve some test case problems when heavily loaded
|
|
The test is supposed to compare the Core Erlang code that has been
printed and parsed back. It did compare and print any differences,
but it did not fail when there were differences.
Also fix problems with variable names and maps not comparing
equal when the inliner has been used.
|
|
core_scan will now support and require atoms encoded in UTF-8.
|
|
|
|
Fix for problem introduced with OTP-14140
|
|
* rickard/ds-fixes:
Fix dirty GC implementation
Fix multi-scheduling with only one normal scheduler
Fix +SDPcpu
|
|
* siri/ct/scale-on-valgrind:
[ct] Scale timetraps when running valgrind
|
|
|
|
* ingela/ssl/ECC-combos/OTP-14334:
ssl: Generate correct certificate chains for the ECC tests
public_key: Public RSA key is present in private key
|
|
The certificate chain handling had become quite entangled and
was not correct.
|
|
Change the return value from {#'RSAPublicKey'{}, #'RSAPrivateKey'{}} to #'RSAPrivateKey'{}
This conforms to the #'ECPrivateKey'{} return value.
Note that DH key will be returned as {Public::integer(), Private::integer()}
as there is no key structure (record) only two integers.
Maybe we would like to add extraction functions for the public key from
the private ones later.
|
|
* rickard/node_container_SUITE.spec:
Add node_container_SUITE spec
|
|
* rickard/pd-hash:
Fix type of MAKE_HASH
|
|
* rickard/test-fix:
Fix scheduler_SUITE:update_cpu_info test-case
|
|
* rickard/sched_type_tests:
Fix dirty scheduler type tests
|
|
|
|
|
|
|
|
OTP-14331
* rickard/pcre-8.40:
Update documentation
Update README.pcre_update.md
Stack guard for PCRE
Adjust for incompatibility between PCRE 8.40 and perl 5.22.1
Generate re replacement and split tests with perl vsn 5.22.1
Fix re_SUITE:pcre_compile_workspace_overflow/1
Skip line with lockout of modifiers in PCRE tests
Update tests for PCRE version 8.40
Update PCRE to version 8.40
Conflicts:
erts/emulator/beam/beam_debug.c
|
|
|
|
Allow HiPE-enabled VMs to be built with --enable-m32-build
|
|
|
|
|
|
* lukas/erts/print_complex_crash_slogan/OTP-14303:
erts: Print more complex terms in crash reason
|
|
* hasse/unicode_atoms/OTP-14285:
edoc: Fix an undefined function warning
|
|
Commit 15a631c introduced an undefined function warning.
When the new string module is merged to master, this commit can be
reverted.
|
|
* hasse/unicode_atoms/OTP-14285:
edoc: Fix a Dialyzer warning
|
|
Commit 15a631c introduced a Dialyzer warning.
When the new string module is merged to master, this commit can be
reverted.
|
|
* sr/epmd/exit-1-if-living-nodes/PR-1402/OTP-14324:
Don't exit 0 if killing epmd is impossible because there's living nodes
|
|
* bjorn/stdlib/cuddle-with-tests:
Teach filelib_SUITE to work when STDLIB is cover-compiled
|
|
* bjorn/erts/slight-bxor-optimization:
beam_emu: Slightly optimize the bxor/2 operator
|
|
* hasse/unicode_atoms/OTP-14285:
syntax_tools: Fix Syntax Tools regarding Unicode atoms
debugger: Show Latin-1 code correctly
edoc: Fix EDoc regarding Unicode atoms
parsetools: Fix Yecc regarding Unicode atoms
parsetools: Fix Leex regarding Unicode atoms
stdlib: Fix Erlang shell regarding Unicode atoms
stdlib: Fix Erlang pretty printer regarding Unicode atoms
stdlib: Add function to io_lib to handle Unicode atoms
|
|
|
|
|
|
|
|
bxor is used in the rand module, so even small optimizations
could be worthwile.
Suggested by Raimo Niskanen.
|
|
filelib_SUITE:find_source/1 would fail when running the tests
with STDLIB cover-compiled.
|
|
|
|
The idea is that the HostAddress argument takes precedence over an
ip-option. However, an ip-option overrides the 'any' HostAddr.
This fixes the case of dameon(Port, [{ip,IP}..] in a non-surprising
way.
|
|
|
|
|
|
|
|
|
|
|
|
Remove many internal options and made them as explicit arguments.
|
|
|
|
Also enables tuple IP-addresses in ssh:connect et al. OTP-14243
|