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

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

Issue 565047: * Add the partial context snapshot to the VM executable if... (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
« src/api.cc ('K') | « src/v8threads.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 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);
191 if (fp_ != NULL) { 190 if (fp_ != NULL) {
192 fputc(byte, fp_); 191 fputc(byte, fp_);
193 } 192 }
194 } 193 }
195 virtual int Position() { 194 virtual int Position() {
196 return ftell(fp_); 195 return ftell(fp_);
197 } 196 }
198 void WriteSpaceUsed( 197 void WriteSpaceUsed(
199 int new_space_used, 198 int new_space_used,
200 int pointer_space_used, 199 int pointer_space_used,
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 TEST(TestThatAlwaysFails) { 647 TEST(TestThatAlwaysFails) {
649 bool ArtificialFailure = false; 648 bool ArtificialFailure = false;
650 CHECK(ArtificialFailure); 649 CHECK(ArtificialFailure);
651 } 650 }
652 651
653 652
654 DEPENDENT_TEST(DependentTestThatAlwaysFails, TestThatAlwaysSucceeds) { 653 DEPENDENT_TEST(DependentTestThatAlwaysFails, TestThatAlwaysSucceeds) {
655 bool ArtificialFailure2 = false; 654 bool ArtificialFailure2 = false;
656 CHECK(ArtificialFailure2); 655 CHECK(ArtificialFailure2);
657 } 656 }
OLDNEW
« src/api.cc ('K') | « src/v8threads.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698