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

Side by Side Diff: test/cctest/test-log.cc

Issue 24072008: stop writing isolate-* files (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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 | « no previous file | 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 2006-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 CHECK_NE(NULL, 414 CHECK_NE(NULL,
415 StrNStr(log.start(), prop2_getter_record.start(), log.length())); 415 StrNStr(log.start(), prop2_getter_record.start(), log.length()));
416 } 416 }
417 417
418 418
419 typedef i::NativesCollection<i::TEST> TestSources; 419 typedef i::NativesCollection<i::TEST> TestSources;
420 420
421 421
422 // Test that logging of code create / move events is equivalent to traversal of 422 // Test that logging of code create / move events is equivalent to traversal of
423 // a resulting heap. 423 // a resulting heap.
424 TEST(EquivalenceOfLoggingAndTraversal) { 424 UNINITIALIZED_TEST(EquivalenceOfLoggingAndTraversal) {
425 // This test needs to be run on a "clean" V8 to ensure that snapshot log 425 // This test needs to be run on a "clean" V8 to ensure that snapshot log
426 // is loaded. This is always true when running using tools/test.py because 426 // is loaded. This is always true when running using tools/test.py because
427 // it launches a new cctest instance for every test. To be sure that launching 427 // it launches a new cctest instance for every test. To be sure that launching
428 // cctest manually also works, please be sure that no tests below 428 // cctest manually also works, please be sure that no tests below
429 // are using V8. 429 // are using V8.
430 430
431 // Start with profiling to capture all code events from the beginning. 431 // Start with profiling to capture all code events from the beginning.
432 ScopedLoggerInitializer initialize_logger; 432 ScopedLoggerInitializer initialize_logger;
433 Logger* logger = initialize_logger.logger(); 433 Logger* logger = initialize_logger.logger();
434 434
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 v8::Local<v8::String> s = result->ToString(); 474 v8::Local<v8::String> s = result->ToString();
475 i::ScopedVector<char> data(s->Utf8Length() + 1); 475 i::ScopedVector<char> data(s->Utf8Length() + 1);
476 CHECK_NE(NULL, data.start()); 476 CHECK_NE(NULL, data.start());
477 s->WriteUtf8(data.start()); 477 s->WriteUtf8(data.start());
478 printf("%s\n", data.start()); 478 printf("%s\n", data.start());
479 // Make sure that our output is written prior crash due to CHECK failure. 479 // Make sure that our output is written prior crash due to CHECK failure.
480 fflush(stdout); 480 fflush(stdout);
481 CHECK(false); 481 CHECK(false);
482 } 482 }
483 } 483 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698