summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--tests/rollback_index3_tests.c27
2 files changed, 0 insertions, 29 deletions
diff --git a/Makefile b/Makefile
index e88ee73c..d1557f81 100644
--- a/Makefile
+++ b/Makefile
@@ -692,7 +692,6 @@ TEST_OBJS += ${TESTLIB_OBJS}
TEST_NAMES = \
tests/cgptlib_test \
tests/ec_sync_tests \
- tests/rollback_index3_tests \
tests/sha_benchmark \
tests/utility_string_tests \
tests/vboot_api_devmode_tests \
@@ -1305,7 +1304,6 @@ ifeq (${TPM2_MODE},)
${RUNTEST} ${BUILD_RUN}/tests/tlcl_tests
${RUNTEST} ${BUILD_RUN}/tests/rollback_index2_tests
endif
- ${RUNTEST} ${BUILD_RUN}/tests/rollback_index3_tests
${RUNTEST} ${BUILD_RUN}/tests/utility_string_tests
${RUNTEST} ${BUILD_RUN}/tests/vboot_api_devmode_tests
${RUNTEST} ${BUILD_RUN}/tests/vboot_api_kernel_tests
diff --git a/tests/rollback_index3_tests.c b/tests/rollback_index3_tests.c
deleted file mode 100644
index 19c13931..00000000
--- a/tests/rollback_index3_tests.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/* Copyright (c) 2013 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.
- *
- * Tests for do-nothing rollback_index functions with disabled TPM
- */
-
-#include <stdint.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "rollback_index.h"
-#include "test_common.h"
-
-int main(int argc, char* argv[])
-{
- uint32_t version = 1;
-
- TEST_EQ(RollbackKernelRead(&version), 0, "RollbackKernelRead()");
- TEST_EQ(version, 0, "rkr version");
-
- TEST_EQ(RollbackKernelWrite(0), 0, "RollbackKernelWrite()");
- TEST_EQ(RollbackKernelLock(0), 0, "RollbackKernelLock()");
-
- return gTestSuccess ? 0 : 255;
-}