| 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 "courgette/base_test_unittest.h" | 7 #include "courgette/base_test_unittest.h" |
| 8 #include "courgette/courgette.h" | 8 #include "courgette/courgette.h" |
| 9 #include "courgette/streams.h" | 9 #include "courgette/streams.h" |
| 10 | 10 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 TEST_F(BSDiffMemoryTest, TestIndenticalDlls) { | 110 TEST_F(BSDiffMemoryTest, TestIndenticalDlls) { |
| 111 std::string file1 = FileContents("en-US.dll"); | 111 std::string file1 = FileContents("en-US.dll"); |
| 112 GenerateAndTestPatch(file1, file1); | 112 GenerateAndTestPatch(file1, file1); |
| 113 } | 113 } |
| 114 | 114 |
| 115 TEST_F(BSDiffMemoryTest, TestDifferentExes) { | 115 TEST_F(BSDiffMemoryTest, TestDifferentExes) { |
| 116 std::string file1 = FileContents("setup1.exe"); | 116 std::string file1 = FileContents("setup1.exe"); |
| 117 std::string file2 = FileContents("setup2.exe"); | 117 std::string file2 = FileContents("setup2.exe"); |
| 118 GenerateAndTestPatch(file1, file2); | 118 GenerateAndTestPatch(file1, file2); |
| 119 } | 119 } |
| 120 |
| 121 TEST_F(BSDiffMemoryTest, TestDifferentElfs) { |
| 122 std::string file1 = FileContents("elf-32-1"); |
| 123 std::string file2 = FileContents("elf-32-2"); |
| 124 GenerateAndTestPatch(file1, file2); |
| 125 } |
| OLD | NEW |