diff options
author | Tao Bao <tbao@google.com> | 2018-04-19 23:33:30 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-04-19 23:33:30 +0200 |
commit | d2c32b281bf8168797dccfda9497a1b0151ff81b (patch) | |
tree | c1ed50959c0f36e8c8218620becb106bfef2fd3c /tests | |
parent | Merge "Add sample_updater style check to PREUPLOAD.cfg" (diff) | |
parent | applypatch: Dump patch info on mismatching patching result. (diff) | |
download | android_bootable_recovery-d2c32b281bf8168797dccfda9497a1b0151ff81b.tar android_bootable_recovery-d2c32b281bf8168797dccfda9497a1b0151ff81b.tar.gz android_bootable_recovery-d2c32b281bf8168797dccfda9497a1b0151ff81b.tar.bz2 android_bootable_recovery-d2c32b281bf8168797dccfda9497a1b0151ff81b.tar.lz android_bootable_recovery-d2c32b281bf8168797dccfda9497a1b0151ff81b.tar.xz android_bootable_recovery-d2c32b281bf8168797dccfda9497a1b0151ff81b.tar.zst android_bootable_recovery-d2c32b281bf8168797dccfda9497a1b0151ff81b.zip |
Diffstat (limited to 'tests')
-rw-r--r-- | tests/component/applypatch_test.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/component/applypatch_test.cpp b/tests/component/applypatch_test.cpp index aa0959bf5..f19f28c60 100644 --- a/tests/component/applypatch_test.cpp +++ b/tests/component/applypatch_test.cpp @@ -344,6 +344,11 @@ TEST_F(ApplyPatchModesTest, PatchModeEmmcTargetWithMultiplePatches) { patch1.c_str(), patch2.c_str(), patch3.c_str() }; + // TODO(b/67849209): Remove after addressing the flakiness. + printf("Calling applypatch_modes with the following args:\n"); + for (const auto& arg : args) { + printf(" %s\n", arg); + } ASSERT_EQ(0, applypatch_modes(args.size(), args.data())); } |