Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(568)

Unified Diff: tests/Makefile

Issue 2835006: Remove old firmware verification code (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile ('k') | tests/big_kernel_tests.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/Makefile
diff --git a/tests/Makefile b/tests/Makefile
index 181d1d1df5d90bae1c3a0052d774afc506ee65da..733d68fda1d7fba5370cf8841d84e7b02e646518 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -9,21 +9,14 @@ INCLUDES += -I./include \
-I../host/include \
-I../misclibs/include \
-I../vboot_firmware/lib/include\
- -I../vfirmware/include\
-I../vkernel/include
-IMAGE_LIBS = $(BUILD)/vfirmware/firmware_image.o \
- $(BUILD)/vkernel/kernel_image.o
+IMAGE_LIBS = $(BUILD)/vkernel/kernel_image.o
UTIL_LIBS = $(BUILD)/misclibs/file_keys.o $(BUILD)/misclibs/signature_digest.o
LIBS = $(IMAGE_LIBS) $(UTIL_LIBS) $(HOSTLIB) $(FWLIB) -lcrypto
BUILD_ROOT = ${BUILD}/tests
-TEST_NAMES = big_firmware_tests \
- big_kernel_tests \
+TEST_NAMES = big_kernel_tests \
cgptlib_test \
- firmware_image_tests \
- firmware_rollback_tests \
- firmware_splicing_tests \
- firmware_verify_benchmark \
kernel_image_tests \
kernel_rollback_tests \
kernel_splicing_tests \
@@ -35,11 +28,20 @@ TEST_NAMES = big_firmware_tests \
vboot_common_tests \
vboot_common2_tests \
vboot_common3_tests \
- verify_firmware_fuzz_driver \
verify_kernel_fuzz_driver
TEST_BINS = $(addprefix ${BUILD_ROOT}/,$(TEST_NAMES))
ALL_DEPS = $(addsuffix .d,${TEST_BINS})
+# TODO: port these tests to vboot_firmware, if not already eqivalent
+# functionality
+# big_firmware_tests
+# firmware_image_tests
+# firmware_rollback_tests
+# firmware_splicing_tests
+# firmware_verify_benchmark
+# verify_firmware_fuzz_driver
+
+
ifneq (${RUNTESTS},)
EXTRA_TARGET = runtests
endif
@@ -132,10 +134,10 @@ runtests:
./run_vboot_common_tests.sh
./run_image_verification_tests.sh
# Splicing tests
- ${BUILD_ROOT}/firmware_splicing_tests
+ #${BUILD_ROOT}/firmware_splicing_tests
${BUILD_ROOT}/kernel_splicing_tests
# Rollback Tests
- ${BUILD_ROOT}/firmware_rollback_tests
+ #${BUILD_ROOT}/firmware_rollback_tests
${BUILD_ROOT}/kernel_rollback_tests
# Helper Library Tests
${BUILD_ROOT}/cgptlib_test
« no previous file with comments | « Makefile ('k') | tests/big_kernel_tests.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698