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

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

Issue 564035: Remove lazy loading of natives files and the natives cache.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/partial_snapshots/
Patch Set: Created 10 years, 10 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 | « test/cctest/test-compiler.cc ('k') | test/mjsunit/debug-script.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2007-2010 the V8 project authors. All rights reserved. 1 // Copyright 2007-2010 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file); 180 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
181 exit(1); 181 exit(1);
182 } 182 }
183 } 183 }
184 virtual ~FileByteSink() { 184 virtual ~FileByteSink() {
185 if (fp_ != NULL) { 185 if (fp_ != NULL) {
186 fclose(fp_); 186 fclose(fp_);
187 } 187 }
188 } 188 }
189 virtual void Put(int byte, const char* description) { 189 virtual void Put(int byte, const char* description) {
190 SerializerDeserializer::Trace("Tag", description, byte);
190 if (fp_ != NULL) { 191 if (fp_ != NULL) {
191 fputc(byte, fp_); 192 fputc(byte, fp_);
192 } 193 }
193 } 194 }
194 virtual int Position() { 195 virtual int Position() {
195 return ftell(fp_); 196 return ftell(fp_);
196 } 197 }
197 void WriteSpaceUsed( 198 void WriteSpaceUsed(
198 int new_space_used, 199 int new_space_used,
199 int pointer_space_used, 200 int pointer_space_used,
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 TEST(TestThatAlwaysFails) { 562 TEST(TestThatAlwaysFails) {
562 bool ArtificialFailure = false; 563 bool ArtificialFailure = false;
563 CHECK(ArtificialFailure); 564 CHECK(ArtificialFailure);
564 } 565 }
565 566
566 567
567 DEPENDENT_TEST(DependentTestThatAlwaysFails, TestThatAlwaysSucceeds) { 568 DEPENDENT_TEST(DependentTestThatAlwaysFails, TestThatAlwaysSucceeds) {
568 bool ArtificialFailure2 = false; 569 bool ArtificialFailure2 = false;
569 CHECK(ArtificialFailure2); 570 CHECK(ArtificialFailure2);
570 } 571 }
OLDNEW
« no previous file with comments | « test/cctest/test-compiler.cc ('k') | test/mjsunit/debug-script.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698