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

Unified Diff: src/trusted/validator/x86/halt_trim_tests.cc

Issue 625923004: Delete old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/validator/x86/halt_trim.c ('k') | src/trusted/validator/x86/nacl_regs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/x86/halt_trim_tests.cc
diff --git a/src/trusted/validator/x86/halt_trim_tests.cc b/src/trusted/validator/x86/halt_trim_tests.cc
deleted file mode 100644
index 58863d453962871b6d6145f7fdfb18d50764e458..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/halt_trim_tests.cc
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * Copyright (c) 2011 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-// Unit tests for code in halt_trim.c
-
-#ifndef NACL_TRUSTED_BUT_NOT_TCB
-#error("This file is not meant for use in the TCB")
-#endif
-
-#include "gtest/gtest.h"
-#include "native_client/src/include/nacl_macros.h"
-#include "native_client/src/shared/platform/nacl_log.h"
-#include "native_client/src/trusted/validator/x86/halt_trim.h"
-#include "native_client/src/trusted/validator/x86/ncinstbuffer.h"
-
-
-namespace {
-
-// Test harness for routines in halt_trim.c.
-class HaltTrimTests : public ::testing::Test {
- protected:
- HaltTrimTests() {}
-};
-
-// Show that if the file ends with less than the minimum number of halts,
-// no trimming occurs.
-TEST_F(HaltTrimTests, TrimSmallHaltSegment) {
- uint8_t small_test[] = {
- 0xf4, 0xf4, 0xf4, 0xf4
- };
- NaClMemorySize small_test_size = NACL_ARRAY_SIZE(small_test);
-
- EXPECT_EQ(small_test_size,
- NCHaltTrimSize(small_test, small_test_size, 16));
-}
-
-// Show that we trim to the nearest 32 byte boundary if there
-// are a lot of halts.
-TEST_F(HaltTrimTests, TrimManyHaltsTo32Boundary) {
- NaClMemorySize size;
- uint8_t large_test[] = {
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- };
- NaClMemorySize large_test_size = NACL_ARRAY_SIZE(large_test);
-
- size = large_test_size;
- EXPECT_EQ((NaClMemorySize) 32, NCHaltTrimSize(large_test, size, 32));
-
- size = large_test_size - 40;
- EXPECT_EQ((NaClMemorySize) 32, NCHaltTrimSize(large_test, size, 32));
-}
-
-// Show that if rounding to the nearest block alignment is too big,
-// we don't change the size.
-TEST_F(HaltTrimTests, TrimFailsIfBlockAlignToBig) {
- uint8_t large_test[40] = {
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
- };
-
- EXPECT_EQ((NaClMemorySize) 32, NCHaltTrimSize(large_test, 40, 32));
- EXPECT_EQ((NaClMemorySize) 20, NCHaltTrimSize(large_test, 20, 32));
-}
-
-}; // anonymous namespace
-
-int main(int argc, char *argv[]) {
- NaClLogModuleInit();
- testing::InitGoogleTest(&argc, argv);
- return RUN_ALL_TESTS();
-}
« no previous file with comments | « src/trusted/validator/x86/halt_trim.c ('k') | src/trusted/validator/x86/nacl_regs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698