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

Unified Diff: test/cctest/compiler/test-graph-visualizer.cc

Issue 1514323002: [tubofan] Remove .dot output of --trace-turbo (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix tests Created 5 years 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/compiler/pipeline.cc ('k') | test/unittests/compiler/control-equivalence-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/compiler/test-graph-visualizer.cc
diff --git a/test/cctest/compiler/test-graph-visualizer.cc b/test/cctest/compiler/test-graph-visualizer.cc
index 9cc491922b957cafd72a5155fa7a122f5810a0e7..48be46ce5faa35d0bd9b00c1215ffcd0d2eee75c 100644
--- a/test/cctest/compiler/test-graph-visualizer.cc
+++ b/test/cctest/compiler/test-graph-visualizer.cc
@@ -39,7 +39,6 @@ TEST(NodeWithNullInputReachableFromEnd) {
graph.SetEnd(phi);
OFStream os(stdout);
- os << AsDOT(graph);
SourcePositionTable table(&graph);
os << AsJSON(graph, &table);
}
@@ -59,7 +58,6 @@ TEST(NodeWithNullControlReachableFromEnd) {
graph.SetEnd(phi);
OFStream os(stdout);
- os << AsDOT(graph);
SourcePositionTable table(&graph);
os << AsJSON(graph, &table);
}
@@ -79,7 +77,6 @@ TEST(NodeWithNullInputReachableFromStart) {
graph.SetEnd(start);
OFStream os(stdout);
- os << AsDOT(graph);
SourcePositionTable table(&graph);
os << AsJSON(graph, &table);
}
@@ -97,7 +94,6 @@ TEST(NodeWithNullControlReachableFromStart) {
graph.SetEnd(merge);
OFStream os(stdout);
- os << AsDOT(graph);
SourcePositionTable table(&graph);
os << AsJSON(graph, &table);
}
@@ -125,7 +121,6 @@ TEST(NodeNetworkOfDummiesReachableFromEnd) {
graph.SetEnd(end);
OFStream os(stdout);
- os << AsDOT(graph);
SourcePositionTable table(&graph);
os << AsJSON(graph, &table);
}
« no previous file with comments | « src/compiler/pipeline.cc ('k') | test/unittests/compiler/control-equivalence-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698