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

Side by Side Diff: test/unittests/compiler/graph-reducer-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
« no previous file with comments | « test/unittests/compiler/compiler-test-utils.h ('k') | test/unittests/compiler/graph-unittest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/graph.h" 5 #include "src/compiler/graph.h"
6 #include "src/compiler/graph-reducer.h" 6 #include "src/compiler/graph-reducer.h"
7 #include "src/compiler/operator.h" 7 #include "src/compiler/operator.h"
8 #include "src/test/test-utils.h" 8 #include "test/unittests/test-utils.h"
9 #include "testing/gmock/include/gmock/gmock.h" 9 #include "testing/gmock/include/gmock/gmock.h"
10 10
11 using testing::_; 11 using testing::_;
12 using testing::DefaultValue; 12 using testing::DefaultValue;
13 using testing::Return; 13 using testing::Return;
14 using testing::Sequence; 14 using testing::Sequence;
15 using testing::StrictMock; 15 using testing::StrictMock;
16 16
17 namespace v8 { 17 namespace v8 {
18 namespace internal { 18 namespace internal {
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 Return(Reducer::Changed(node0))); 106 Return(Reducer::Changed(node0)));
107 EXPECT_CALL(r1, Reduce(node0)).InSequence(s1); 107 EXPECT_CALL(r1, Reduce(node0)).InSequence(s1);
108 EXPECT_CALL(r2, Reduce(node0)).InSequence(s2); 108 EXPECT_CALL(r2, Reduce(node0)).InSequence(s2);
109 EXPECT_CALL(r3, Reduce(node0)).InSequence(s3); 109 EXPECT_CALL(r3, Reduce(node0)).InSequence(s3);
110 ReduceNode(node0, &r1, &r2, &r3); 110 ReduceNode(node0, &r1, &r2, &r3);
111 } 111 }
112 112
113 } // namespace compiler 113 } // namespace compiler
114 } // namespace internal 114 } // namespace internal
115 } // namespace v8 115 } // namespace v8
OLDNEW
« no previous file with comments | « test/unittests/compiler/compiler-test-utils.h ('k') | test/unittests/compiler/graph-unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698