Chromium Code Reviews| 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)); |