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

Side by Side Diff: test/unittests/compiler/change-lowering-unittest.cc

Issue 615393002: Move unit tests to test/unittests. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/change-lowering.h" 5 #include "src/compiler/change-lowering.h"
6 #include "src/compiler/compiler-test-utils.h"
7 #include "src/compiler/graph-unittest.h"
8 #include "src/compiler/js-graph.h" 6 #include "src/compiler/js-graph.h"
9 #include "src/compiler/node-properties-inl.h" 7 #include "src/compiler/node-properties-inl.h"
10 #include "src/compiler/simplified-operator.h" 8 #include "src/compiler/simplified-operator.h"
11 #include "src/compiler/typer.h" 9 #include "src/compiler/typer.h"
10 #include "test/unittests/compiler/compiler-test-utils.h"
11 #include "test/unittests/compiler/graph-unittest.h"
12 #include "testing/gmock-support.h" 12 #include "testing/gmock-support.h"
13 13
14 using testing::_; 14 using testing::_;
15 using testing::AllOf; 15 using testing::AllOf;
16 using testing::Capture; 16 using testing::Capture;
17 using testing::CaptureEq; 17 using testing::CaptureEq;
18 18
19 namespace v8 { 19 namespace v8 {
20 namespace internal { 20 namespace internal {
21 namespace compiler { 21 namespace compiler {
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 IsIfTrue(AllOf(CaptureEq(&branch), 459 IsIfTrue(AllOf(CaptureEq(&branch),
460 IsBranch(IsUint32LessThanOrEqual( 460 IsBranch(IsUint32LessThanOrEqual(
461 val, IsInt32Constant(SmiMaxValue())), 461 val, IsInt32Constant(SmiMaxValue())),
462 graph()->start()))), 462 graph()->start()))),
463 AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch)))))); 463 AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch))))));
464 } 464 }
465 465
466 } // namespace compiler 466 } // namespace compiler
467 } // namespace internal 467 } // namespace internal
468 } // namespace v8 468 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698