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

Side by Side Diff: test/unittests/wasm/asm-types-unittest.cc

Issue 2057403003: Hooking up asm-wasm conversion. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 5 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
« no previous file with comments | « test/cctest/test-asm-validator.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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/wasm/asm-types.h" 5 #include "src/asmjs/asm-types.h"
6 6
7 #include <unordered_map> 7 #include <unordered_map>
8 #include <unordered_set> 8 #include <unordered_set>
9 9
10 #include "src/base/macros.h" 10 #include "src/base/macros.h"
11 #include "test/unittests/test-utils.h" 11 #include "test/unittests/test-utils.h"
12 #include "testing/gmock/include/gmock/gmock.h" 12 #include "testing/gmock/include/gmock/gmock.h"
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
14 14
15 namespace v8 { 15 namespace v8 {
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 for (size_t ii = 0; ii < arraysize(test_types); ++ii) { 720 for (size_t ii = 0; ii < arraysize(test_types); ++ii) {
721 EXPECT_EQ(StoreTypeForType(test_types[ii]), test_types[ii]->StoreType()) 721 EXPECT_EQ(StoreTypeForType(test_types[ii]), test_types[ii]->StoreType())
722 << test_types[ii]->Name(); 722 << test_types[ii]->Name();
723 } 723 }
724 } 724 }
725 725
726 } // namespace 726 } // namespace
727 } // namespace wasm 727 } // namespace wasm
728 } // namespace internal 728 } // namespace internal
729 } // namespace v8 729 } // namespace v8
OLDNEW
« no previous file with comments | « test/cctest/test-asm-validator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698