Bug/temporarely disable broken tests #445
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the codebase, primarily focusing on disabling certain broken test cases. Some additional changes are: expluding some new functions from the debug internals and updating memory deallocation in the io_uring support.
Changes to logging:
src/log/log_debug.h
: Addedhashtable_mcmp_op_get_by_index
andhashtable_mcmp_op_get_by_index_all_databases
to theLOG_MESSAGE_DEBUG_RULES_SRC_FUNC_EXCLUDE
list.Updates to memory management:
src/support/io_uring/io_uring_support.c
: Replacedfree(probe)
withio_uring_free_probe(probe)
in theio_uring_support_probe_opcode
function.Changes to test cases:
tests/unit_tests/modules/redis/command/test-modules-redis-command-getex.cpp
: Commented out sections of test cases for "Expire in 500ms" and "Expire in 1s".tests/unit_tests/modules/redis/command/test-modules-redis-command-psetex.cpp
: Commented out sections of test cases for "New key - expire in 500ms" and "New key - expire in 1s".tests/unit_tests/modules/redis/command/test-modules-redis-command-set.cpp
: Commented out sections of test cases for "New key - expire in 500ms", "New key - expire in 1s", and "New key - KEEPTTL".tests/unit_tests/modules/redis/command/test-modules-redis-command-setex.cpp
: Commented out the test case for "New key - expire in 1s".