Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DEVELOPMENT_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ If you are making material changes to a file that has a different license at the
There isn't a well defined test for what is considered a material change, but a good rule of thumb is that material changes are more than 100 lines of code.

## Test coverage
Valkey uses two types of tests: unit tests and integration tests.
Valkey uses two types of tests: unit and integration tests.
All contributions should include a test of some form.

Unit tests are present in the `src/unit` directory, and are intended to test individual structures or files.
Expand Down
1 change: 0 additions & 1 deletion src/gtest/.flags

This file was deleted.

2 changes: 1 addition & 1 deletion src/unit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ ifeq ($(IS_GCC),g++)
MORE_WARNINGS += -Wsync-nand -Wtrampolines -Werror=logical-op -Werror=aggressive-loop-optimizations
GCC_FLAGS += -fno-var-tracking-assignments
else
# Clang: disable warnings that are errors in unit/gmock
# Clang: disable warnings that are errors in gtest/gmock
MORE_WARNINGS += -Wno-deprecated-copy
MORE_WARNINGS += -Wno-keyword-macro
endif
Expand Down
Loading