Index: chrome/browser/nacl_host/nacl_process_host_unittest.cc |
diff --git a/chrome/browser/nacl_host/nacl_process_host_unittest.cc b/chrome/browser/nacl_host/nacl_process_host_unittest.cc |
deleted file mode 100644 |
index aaff3222c97beefa5ac1ba55e4327119daba2c12..0000000000000000000000000000000000000000 |
--- a/chrome/browser/nacl_host/nacl_process_host_unittest.cc |
+++ /dev/null |
@@ -1,15 +0,0 @@ |
-// Copyright 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "chrome/browser/nacl_host/nacl_process_host.h" |
-#include "testing/gtest/include/gtest/gtest.h" |
- |
-#if defined(OS_WIN) |
-TEST(NaClProcessHostTest, AddressSpaceAllocation) { |
- size_t size = 1 << 20; // 1 MB |
- void* addr = nacl::AllocateAddressSpaceASLR(GetCurrentProcess(), size); |
- bool success = VirtualFree(addr, 0, MEM_RELEASE); |
- ASSERT_TRUE(success); |
-} |
-#endif |