diff options
author | Nick Brassel <nick@tzarc.org> | 2021-11-23 09:54:04 +1100 |
---|---|---|
committer | Nick Brassel <nick@tzarc.org> | 2021-11-23 09:54:04 +1100 |
commit | 7746aefe94cc4cd492bfafdef73d95d073f0603b (patch) | |
tree | 42c6daae724c74f7e21422f3fec4dc384c0e1f5d /build_full_test.mk | |
parent | b6054c0206609f3755f71d819643644d250288b0 (diff) | |
download | qmk_firmware-7746aefe94cc4cd492bfafdef73d95d073f0603b.tar.gz qmk_firmware-7746aefe94cc4cd492bfafdef73d95d073f0603b.zip |
Revert "[Tests] Increase QMK test coverage (#13789)"
This reverts commit b6054c0206609f3755f71d819643644d250288b0.
Diffstat (limited to 'build_full_test.mk')
-rw-r--r-- | build_full_test.mk | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/build_full_test.mk b/build_full_test.mk index 4cd1ac61b..f8030cb06 100644 --- a/build_full_test.mk +++ b/build_full_test.mk | |||
@@ -13,24 +13,21 @@ | |||
13 | # You should have received a copy of the GNU General Public License | 13 | # You should have received a copy of the GNU General Public License |
14 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
15 | 15 | ||
16 | $(TEST)_INC := \ | 16 | #include $(TMK_PATH)/protocol.mk |
17 | tests\test_common\common_config.h | ||
18 | 17 | ||
19 | $(TEST)_SRC := \ | 18 | TEST_PATH=tests/$(TEST) |
19 | |||
20 | $(TEST)_SRC= \ | ||
21 | $(TEST_PATH)/keymap.c \ | ||
20 | $(TMK_COMMON_SRC) \ | 22 | $(TMK_COMMON_SRC) \ |
21 | $(QUANTUM_SRC) \ | 23 | $(QUANTUM_SRC) \ |
22 | $(SRC) \ | 24 | $(SRC) \ |
23 | tests/test_common/keymap.c \ | ||
24 | tests/test_common/matrix.c \ | 25 | tests/test_common/matrix.c \ |
25 | tests/test_common/test_driver.cpp \ | 26 | tests/test_common/test_driver.cpp \ |
26 | tests/test_common/keyboard_report_util.cpp \ | 27 | tests/test_common/keyboard_report_util.cpp \ |
27 | tests/test_common/test_fixture.cpp \ | 28 | tests/test_common/test_fixture.cpp |
28 | tests/test_common/test_keymap_key.cpp \ | 29 | $(TEST)_SRC += $(patsubst $(ROOTDIR)/%,%,$(wildcard $(TEST_PATH)/*.cpp)) |
29 | tests/test_common/test_logger.cpp \ | ||
30 | $(patsubst $(ROOTDIR)/%,%,$(wildcard $(TEST_PATH)/*.cpp)) | ||
31 | |||
32 | $(TEST)_DEFS := $(TMK_COMMON_DEFS) $(OPT_DEFS) | ||
33 | |||
34 | $(TEST)_CONFIG := $(TEST_PATH)/config.h | ||
35 | 30 | ||
36 | VPATH += $(TOP_DIR)/tests/test_common \ No newline at end of file | 31 | $(TEST)_DEFS=$(TMK_COMMON_DEFS) $(OPT_DEFS) |
32 | $(TEST)_CONFIG=$(TEST_PATH)/config.h | ||
33 | VPATH+=$(TOP_DIR)/tests/test_common | ||