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

Unified Diff: vm/find_code_object_test.cc

Issue 10082017: Remove code index table. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 8 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 | « vm/disassembler_ia32.cc ('k') | vm/isolate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/find_code_object_test.cc
===================================================================
--- vm/find_code_object_test.cc (revision 6535)
+++ vm/find_code_object_test.cc (working copy)
@@ -15,7 +15,7 @@
// Compiler only implemented on IA32 and x64 now.
#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
-TEST_CASE(CodeIndexTable) {
+TEST_CASE(FindCodeObject) {
#if defined(TARGET_ARCH_IA32)
const int kLoopCount = 50000;
#else
@@ -24,7 +24,7 @@
const int kScriptSize = 512 * KB;
const int kNumFunctions = 1024;
char scriptChars[kScriptSize];
- String& url = String::Handle(String::New("dart-test:CodeIndexTable"));
+ String& url = String::Handle(String::New("dart-test:FincCodeObject"));
srdjan 2012/04/13 20:47:01 Finc -> Find
String& source = String::Handle();
Script& script = Script::Handle();
Library& lib = Library::Handle();
@@ -99,7 +99,7 @@
buffer);
}
OS::SNPrint((scriptChars + written), (kScriptSize - written), "}");
- url = String::New("dart-test:CodeIndexTable");
+ url = String::New("dart-test:FindCodeObject");
source = String::New(scriptChars);
script = Script::New(url, source, RawScript::kSource);
EXPECT(CompilerTest::TestCompileScript(lib, script));
« no previous file with comments | « vm/disassembler_ia32.cc ('k') | vm/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698