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

Unified Diff: test/unittests/unittests.h

Issue 438243003: Revert "Initial import of unittests using GTest/GMock." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | « test/unittests/testcfg.py ('k') | test/unittests/unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/unittests.h
diff --git a/test/unittests/unittests.h b/test/unittests/unittests.h
deleted file mode 100644
index f8f267aad18db88de49fb445ee1505caa518e290..0000000000000000000000000000000000000000
--- a/test/unittests/unittests.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef V8_UNITTESTS_UNITTESTS_H_
-#define V8_UNITTESTS_UNITTESTS_H_
-
-#include "src/compiler/pipeline.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-// The COMPILER_TEST(Case, Name) macro works just like
-// TEST(Case, Name), except that the test is disabled
-// if the platform is not a supported TurboFan target.
-#if V8_TURBOFAN_TARGET
-#define COMPILER_TEST(Case, Name) TEST(Case, Name)
-#else // V8_TURBOFAN_TARGET
-#define COMPILER_TEST(Case, Name) TEST(Case, DISABLED_##Name)
-#endif // V8_TURBOFAN_TARGET
-
-
-// The COMPILER_TEST_F(Case, Name) macro works just like
-// TEST_F(Case, Name), except that the test is disabled
-// if the platform is not a supported TurboFan target.
-#if V8_TURBOFAN_TARGET
-#define COMPILER_TEST_F(Case, Name) TEST_F(Case, Name)
-#else // V8_TURBOFAN_TARGET
-#define COMPILER_TEST_F(Case, Name) TEST_F(Case, DISABLED_##Name)
-#endif // V8_TURBOFAN_TARGET
-
-namespace v8 {
-namespace internal {
-
-class EngineTest : public ::testing::Test {
- public:
- virtual ~EngineTest() {}
-
- static void SetUpTestCase();
- static void TearDownTestCase();
-
- private:
- static v8::Platform* platform_;
-};
-
-} // namespace internal
-} // namespace v8
-
-#endif // V8_UNITTESTS_UNITTESTS_H_
« no previous file with comments | « test/unittests/testcfg.py ('k') | test/unittests/unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698