mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-25 17:27:18 +00:00
Changed TlclRead / TlclWrite to take void* / const void* to reduce typecasts. Much restructuring of rollback_index.c. Fixed a version-packing bug in rollback_index.c (& --> |) BUG:chrome-os-partner:304 TEST:manual testing of all code flows on CRB Review URL: http://codereview.chromium.org/3084030
110 lines
2.7 KiB
Makefile
110 lines
2.7 KiB
Makefile
# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
INCLUDES += -I./include \
|
|
-I$(FWDIR)/lib/include \
|
|
-I$(FWDIR)/lib/cgptlib/include \
|
|
-I$(FWDIR)/lib/cryptolib/include \
|
|
-I$(FWDIR)/lib/tpm_lite/include \
|
|
-I$(HOSTDIR)/include
|
|
BUILD_ROOT = ${BUILD}/tests
|
|
|
|
TEST_NAMES = cgptlib_test \
|
|
rsa_padding_test \
|
|
rsa_verify_benchmark \
|
|
sha_benchmark \
|
|
sha_tests \
|
|
vboot_common_tests \
|
|
vboot_common2_tests \
|
|
vboot_common3_tests \
|
|
|
|
TEST_BINS = $(addprefix ${BUILD_ROOT}/,$(TEST_NAMES))
|
|
|
|
TEST_LIB = ${BUILD_ROOT}/test.a
|
|
TEST_LIB_SRCS = test_common.c timer_utils.c crc32_test.c
|
|
TEST_LIB_OBJS = $(TEST_LIB_SRCS:%.c=${BUILD_ROOT}/%.o)
|
|
ALL_DEPS = $(addsuffix .d,${TEST_BINS} ${TEST_LIB_OBJS})
|
|
CFLAGS += -MMD -MF $@.d
|
|
|
|
LIBS := ${TEST_LIB} $(HOSTLIB) $(FWLIB)
|
|
|
|
ifneq (${RUNTESTS},)
|
|
EXTRA_TARGET = runtests
|
|
endif
|
|
|
|
all: $(TEST_BINS) ${EXTRA_TARGET}
|
|
|
|
rbtest: $(BUILD_ROOT)/rollback_index_test
|
|
|
|
${TEST_LIB}: ${TEST_LIB_OBJS}
|
|
rm -f $@
|
|
ar qc $@ $^
|
|
|
|
${BUILD_ROOT}/rollback_index_test.o : rollback_index_test.c
|
|
$(CC) $(CFLAGS) -I/usr/include $(INCLUDES) -MMD -MF $@.d -c -o $@ $<
|
|
|
|
${BUILD_ROOT}/rollback_index_test: rollback_index_test.c ${HOSTLIB} ${FWLIB}
|
|
$(CC) $(CFLAGS) -I/usr/include $(INCLUDES) $< -o $@ \
|
|
-ltlcl ${HOSTLIB} ${FWLIB} -lcrypto -lrt
|
|
|
|
${BUILD_ROOT}/%.o : %.c
|
|
$(CC) $(CFLAGS) $(INCLUDES) -MMD -MF $@.d -c -o $@ $<
|
|
|
|
${BUILD_ROOT}/%: %.c ${LIBS}
|
|
$(CC) $(CFLAGS) $(INCLUDES) $< ${LIBS} -o $@ -lcrypto -lrt
|
|
|
|
# TODO: port these tests to new API, if not already eqivalent
|
|
# functionality in other tests
|
|
#
|
|
# big_firmware_tests
|
|
# firmware_image_tests
|
|
# firmware_rollback_tests
|
|
# firmware_splicing_tests
|
|
# firmware_verify_benchmark
|
|
# verify_firmware_fuzz_driver
|
|
#
|
|
# big_kernel_tests
|
|
# kernel_image_tests
|
|
# kernel_rollback_tests
|
|
# kernel_splicing_tests
|
|
# kernel_verify_benchmark
|
|
# verify_kernel_fuzz_driver
|
|
|
|
# Generate test keys
|
|
genkeys:
|
|
./gen_test_keys.sh
|
|
|
|
# Run cgpt tests
|
|
runcgpttests:
|
|
${BUILD_ROOT}/cgptlib_test
|
|
./run_cgpt_tests.sh ${BUILD}/cgpt/cgpt
|
|
|
|
# Run crypto tests
|
|
runcryptotests:
|
|
./run_rsa_tests.sh
|
|
${BUILD_ROOT}/sha_tests
|
|
./run_vboot_common_tests.sh
|
|
|
|
# Run other misc tests
|
|
runmisctests:
|
|
./run_vbutil_tests.sh
|
|
|
|
|
|
runtests: genkeys runcgpttests runcryptotests runmisctests
|
|
|
|
# TODO: tests to run when ported to new API
|
|
# ./run_image_verification_tests.sh
|
|
# # Splicing tests
|
|
# ${BUILD_ROOT}/firmware_splicing_tests
|
|
# ${BUILD_ROOT}/kernel_splicing_tests
|
|
# # Rollback Tests
|
|
# ${BUILD_ROOT}/firmware_rollback_tests
|
|
# ${BUILD_ROOT}/kernel_rollback_tests
|
|
|
|
install-rbtest: $(BUILD_ROOT)/rollback_index_test
|
|
mkdir -p $(DESTDIR)
|
|
cp -f $(BUILD_ROOT)/rollback_index_test $(DESTDIR)
|
|
|
|
-include ${ALL_DEPS}
|