Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Unified Diff: scripts/common/archive_utils_unittest.py

Issue 2402423002: Enable saving the same file in multiple archives (Closed)
Patch Set: Follow-up fix broken build Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/common/archive_utils.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/common/archive_utils_unittest.py
diff --git a/scripts/common/archive_utils_unittest.py b/scripts/common/archive_utils_unittest.py
index 1d2aa048b7d9861b5f424fb3008f7e5386236bb4..5839b03e36f17f87d133ad9b0a945dd2977aee30 100644
--- a/scripts/common/archive_utils_unittest.py
+++ b/scripts/common/archive_utils_unittest.py
@@ -387,6 +387,8 @@ class ArchiveUtilsTest(unittest.TestCase):
self.assertTrue(fparser.IsOptional(optional_fn))
non_existent_fn = 'non_existent_fn.txt'
self.assertFalse(fparser.IsOptional(non_existent_fn))
+ not_optional_fn = 'archive_allany.txt'
+ self.assertFalse(fparser.IsOptional(not_optional_fn))
# It's only optional for 'dev' builds.
buildtype = 'official'
« no previous file with comments | « scripts/common/archive_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698