summaryrefslogtreecommitdiff
path: root/tests/run_vboot_ec_tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run_vboot_ec_tests.sh')
-rwxr-xr-xtests/run_vboot_ec_tests.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/run_vboot_ec_tests.sh b/tests/run_vboot_ec_tests.sh
deleted file mode 100755
index 302a3578..00000000
--- a/tests/run_vboot_ec_tests.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash -eu
-
-# 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.
-
-# Run verified boot firmware and kernel verification tests.
-
-# Load common constants and variables.
-. "$(dirname "$0")/common.sh"
-
-check_test_keys
-
-for priv in ${TESTKEY_DIR}/*.vbprivk; do
- root=$(basename ${priv%.vbprivk})
- pub="${priv%.vbprivk}.vbpubk"
- echo "Trying $root ..."
- ${TEST_DIR}/vboot_ec_tests "$priv" "$pub"
-done