| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "courgette/third_party/bsdiff.h" | 5 #include "courgette/third_party/bsdiff.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "courgette/base_test_unittest.h" | 9 #include "courgette/base_test_unittest.h" |
| 8 #include "courgette/courgette.h" | 10 #include "courgette/courgette.h" |
| 9 #include "courgette/streams.h" | 11 #include "courgette/streams.h" |
| 10 | 12 |
| 11 class BSDiffMemoryTest : public BaseTest { | 13 class BSDiffMemoryTest : public BaseTest { |
| 12 public: | 14 public: |
| 13 void GenerateAndTestPatch(const std::string& a, const std::string& b) const; | 15 void GenerateAndTestPatch(const std::string& a, const std::string& b) const; |
| 14 | 16 |
| 15 std::string GenerateSyntheticInput(size_t length, int seed) const; | 17 std::string GenerateSyntheticInput(size_t length, int seed) const; |
| 16 }; | 18 }; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 std::string file1 = FileContents("setup1.exe"); | 118 std::string file1 = FileContents("setup1.exe"); |
| 117 std::string file2 = FileContents("setup2.exe"); | 119 std::string file2 = FileContents("setup2.exe"); |
| 118 GenerateAndTestPatch(file1, file2); | 120 GenerateAndTestPatch(file1, file2); |
| 119 } | 121 } |
| 120 | 122 |
| 121 TEST_F(BSDiffMemoryTest, TestDifferentElfs) { | 123 TEST_F(BSDiffMemoryTest, TestDifferentElfs) { |
| 122 std::string file1 = FileContents("elf-32-1"); | 124 std::string file1 = FileContents("elf-32-1"); |
| 123 std::string file2 = FileContents("elf-32-2"); | 125 std::string file2 = FileContents("elf-32-2"); |
| 124 GenerateAndTestPatch(file1, file2); | 126 GenerateAndTestPatch(file1, file2); |
| 125 } | 127 } |
| OLD | NEW |