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

Side by Side Diff: tests/Makefile

Issue 6532040: Add NV storage API to vboot reference (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « firmware/lib/vboot_nvstorage.c ('k') | tests/vboot_nvstorage_test.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 INCLUDES += -I./include \ 5 INCLUDES += -I./include \
6 -I$(FWDIR)/lib/include \ 6 -I$(FWDIR)/lib/include \
7 -I$(FWDIR)/lib/cgptlib/include \ 7 -I$(FWDIR)/lib/cgptlib/include \
8 -I$(FWDIR)/lib/cryptolib/include \ 8 -I$(FWDIR)/lib/cryptolib/include \
9 -I$(FWDIR)/lib/tpm_lite/include \ 9 -I$(FWDIR)/lib/tpm_lite/include \
10 -I$(HOSTDIR)/include 10 -I$(HOSTDIR)/include
11 BUILD_ROOT = ${BUILD}/tests 11 BUILD_ROOT = ${BUILD}/tests
12 12
13 TEST_NAMES = cgptlib_test \ 13 TEST_NAMES = cgptlib_test \
14 rsa_padding_test \ 14 rsa_padding_test \
15 rsa_verify_benchmark \ 15 rsa_verify_benchmark \
16 sha_benchmark \ 16 sha_benchmark \
17 sha_tests \ 17 sha_tests \
18 vboot_common_tests \ 18 vboot_common_tests \
19 vboot_common2_tests \ 19 vboot_common2_tests \
20 vboot_common3_tests \ 20 vboot_common3_tests \
21 vboot_nvstorage_test
21 22
22 TEST_BINS = $(addprefix ${BUILD_ROOT}/,$(TEST_NAMES)) 23 TEST_BINS = $(addprefix ${BUILD_ROOT}/,$(TEST_NAMES))
23 24
24 TEST_LIB = ${BUILD_ROOT}/test.a 25 TEST_LIB = ${BUILD_ROOT}/test.a
25 TEST_LIB_SRCS = test_common.c timer_utils.c crc32_test.c 26 TEST_LIB_SRCS = test_common.c timer_utils.c crc32_test.c
26 TEST_LIB_OBJS = $(TEST_LIB_SRCS:%.c=${BUILD_ROOT}/%.o) 27 TEST_LIB_OBJS = $(TEST_LIB_SRCS:%.c=${BUILD_ROOT}/%.o)
27 ALL_DEPS = $(addsuffix .d,${TEST_BINS} ${TEST_LIB_OBJS}) 28 ALL_DEPS = $(addsuffix .d,${TEST_BINS} ${TEST_LIB_OBJS})
28 CFLAGS += -MMD -MF $@.d 29 CFLAGS += -MMD -MF $@.d
29 30
30 LIBS := ${TEST_LIB} $(HOSTLIB) 31 LIBS := ${TEST_LIB} $(HOSTLIB)
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 # ${BUILD_ROOT}/kernel_splicing_tests 110 # ${BUILD_ROOT}/kernel_splicing_tests
110 # # Rollback Tests 111 # # Rollback Tests
111 # ${BUILD_ROOT}/firmware_rollback_tests 112 # ${BUILD_ROOT}/firmware_rollback_tests
112 # ${BUILD_ROOT}/kernel_rollback_tests 113 # ${BUILD_ROOT}/kernel_rollback_tests
113 114
114 install-rbtest: $(BUILD_ROOT)/rollback_index_test 115 install-rbtest: $(BUILD_ROOT)/rollback_index_test
115 mkdir -p $(DESTDIR) 116 mkdir -p $(DESTDIR)
116 cp -f $(BUILD_ROOT)/rollback_index_test $(DESTDIR) 117 cp -f $(BUILD_ROOT)/rollback_index_test $(DESTDIR)
117 118
118 -include ${ALL_DEPS} 119 -include ${ALL_DEPS}
OLDNEW
« no previous file with comments | « firmware/lib/vboot_nvstorage.c ('k') | tests/vboot_nvstorage_test.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698