summaryrefslogtreecommitdiffstats
path: root/courgette/versioning_unittest.cc
diff options
context:
space:
mode:
authorwfh@chromium.org <wfh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-23 21:05:22 +0000
committerwfh@chromium.org <wfh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-23 21:05:22 +0000
commit6bf1a00d77b886f11b8e5d96a64c3a22f544afad (patch)
tree2f97a7ebb508ebf3482ba8ec855ee3554f5ca92f /courgette/versioning_unittest.cc
parent4b5dc66011b4499c09da44eb69d7e8f5836a9f50 (diff)
downloadchromium_src-6bf1a00d77b886f11b8e5d96a64c3a22f544afad.zip
chromium_src-6bf1a00d77b886f11b8e5d96a64c3a22f544afad.tar.gz
chromium_src-6bf1a00d77b886f11b8e5d96a64c3a22f544afad.tar.bz2
Add PE64 support to courgette
Add tests for PE64 BUG=38784 Review URL: https://chromiumcodereview.appspot.com/23600063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224789 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'courgette/versioning_unittest.cc')
-rw-r--r--courgette/versioning_unittest.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/courgette/versioning_unittest.cc b/courgette/versioning_unittest.cc
index 5332592..5313b8b 100644
--- a/courgette/versioning_unittest.cc
+++ b/courgette/versioning_unittest.cc
@@ -50,6 +50,8 @@ void VersioningTest::TestApplyingOldPatch(const char* src_file,
TEST_F(VersioningTest, All) {
TestApplyingOldPatch("setup1.exe", "setup1-setup2.v1.patch", "setup2.exe");
+ TestApplyingOldPatch("chrome64_1.exe", "chrome64-1-2.v1.patch",
+ "chrome64_2.exe");
// We also need a way to test that newly generated patches are appropriately
// applicable by older clients... not sure of the best way to do that.