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

Side by Side Diff: autotest/client/firmware_VbootCrypto/src/Makefile

Issue 3335018: vboot_reference: move tests into client/ and also put the server test in here (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git
Patch Set: Created 10 years, 3 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
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 VBOOT_SRC_DIR ?= ../../.. 5 VBOOT_SRC_DIR ?= ../../../..
6 BUILD_TEST_DIR = vboot_tests 6 BUILD_TEST_DIR = vboot_tests
7 # Test Binaries. 7 # Test Binaries.
8 TEST_BINS = \ 8 TEST_BINS = \
9 cgptlib_test \ 9 cgptlib_test \
10 rsa_padding_test \ 10 rsa_padding_test \
11 rsa_verify_benchmark \ 11 rsa_verify_benchmark \
12 sha_benchmark \ 12 sha_benchmark \
13 sha_tests \ 13 sha_tests \
14 vboot_common_tests \ 14 vboot_common_tests \
15 vboot_common2_tests \ 15 vboot_common2_tests \
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 # Move utility binaries used by the tests. 63 # Move utility binaries used by the tests.
64 mkdir -p build/utility 64 mkdir -p build/utility
65 set -e; for i in $(UTIL_BINS); do \ 65 set -e; for i in $(UTIL_BINS); do \
66 mv $(BUILD_TEST_DIR)/build/utility/$$i build/utility/ ;\ 66 mv $(BUILD_TEST_DIR)/build/utility/$$i build/utility/ ;\
67 done 67 done
68 # Delete sources. 68 # Delete sources.
69 rm -rf $(BUILD_TEST_DIR) 69 rm -rf $(BUILD_TEST_DIR)
70 70
71 clean: 71 clean:
72 rm -rf utility/ tests/ 72 rm -rf utility/ tests/
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698