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

Unified Diff: tools/binary_size/libsupersize/testdata/Console.golden

Issue 2863753005: Supersize: Store whether source path was generated in flags (Closed)
Patch Set: Created 3 years, 7 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
Index: tools/binary_size/libsupersize/testdata/Console.golden
diff --git a/tools/binary_size/libsupersize/testdata/Console.golden b/tools/binary_size/libsupersize/testdata/Console.golden
index bad6bceb3904375ab3c553c5214b6bb7dfe5a63a..3409ae805f834e40b9712734cc254c1a0260e675 100644
--- a/tools/binary_size/libsupersize/testdata/Console.golden
+++ b/tools/binary_size/libsupersize/testdata/Console.golden
@@ -11,8 +11,8 @@ by_path = text_syms.GroupBySourcePath(depth=2)
Print(by_path.WhereBiggerThan(1024))
# Show all non-vtable generated symbols
-generated_syms = size_info.symbols.WhereIsGenerated()
-Print(generated_syms.WhereNameMatches(r"vtable").Inverted())
+generated_syms = size_info.symbols.WhereGeneratedByToolchain()
+Print(generated_syms.WhereNameMatches(r"vtable").Inverted().Sorted())
# Show all symbols that have "print" in their name or path, except
# those within components/.

Powered by Google App Engine
This is Rietveld 408576698