| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |