diff --git a/Makefile b/Makefile index b41d1b68..15b45bec 100644 --- a/Makefile +++ b/Makefile @@ -352,8 +352,7 @@ summary sizes: \ <(./scripts/csv.py $(BUILDDIR)/lfs.structs.csv \ -fstructs=size -q $(SUMMARYFLAGS) -o-) \ -bfunction -fcode -fdata -fstack='max(stack)' -fstructs \ - -Y $(SUMMARYFLAGS) \ - | cut -c 25-) + -Y $(SUMMARYFLAGS)) ## Compare compile-time sizes .PHONY: summary-diff sizes-diff @@ -383,8 +382,7 @@ summary-diff sizes-diff: $(OBJ) $(CI) <(./scripts/csv.py $(BUILDDIR)/lfs.structs.csv \ -fstructs=size -q $(SUMMARYFLAGS) -o-) \ -fcode -fdata -fstack='max(stack)' -fstructs \ - -q $(SUMMARYFLAGS) -o-) \ - | cut -c 25-) + -q $(SUMMARYFLAGS) -o-)) ## Build the test-runner .PHONY: test-runner build-tests diff --git a/scripts/code.py b/scripts/code.py index f4d8f48c..1586aa0c 100755 --- a/scripts/code.py +++ b/scripts/code.py @@ -524,7 +524,7 @@ def table(Result, results, diff_results=None, *, # find the best widths, note that column 0 contains the names and is # handled a bit differently - widths = co.defaultdict(lambda: 7, {0: 23}) + widths = co.defaultdict(lambda: 7, {0: 7}) notes = co.defaultdict(lambda: 0) for line in lines: for i, x in enumerate(line): diff --git a/scripts/cov.py b/scripts/cov.py index d3f8f756..ec5f6af3 100755 --- a/scripts/cov.py +++ b/scripts/cov.py @@ -534,7 +534,7 @@ def table(Result, results, diff_results=None, *, # find the best widths, note that column 0 contains the names and is # handled a bit differently - widths = co.defaultdict(lambda: 7, {0: 23}) + widths = co.defaultdict(lambda: 7, {0: 7}) notes = co.defaultdict(lambda: 0) for line in lines: for i, x in enumerate(line): diff --git a/scripts/csv.py b/scripts/csv.py index 15a5cc8a..0736f035 100755 --- a/scripts/csv.py +++ b/scripts/csv.py @@ -1341,7 +1341,7 @@ def table(Result, results, diff_results=None, *, # find the best widths, note that column 0 contains the names and is # handled a bit differently - widths = co.defaultdict(lambda: 7, {0: 23}) + widths = co.defaultdict(lambda: 7, {0: 7}) notes = co.defaultdict(lambda: 0) for line in lines: for i, x in enumerate(line): diff --git a/scripts/data.py b/scripts/data.py index dc830da4..c60e8892 100755 --- a/scripts/data.py +++ b/scripts/data.py @@ -524,7 +524,7 @@ def table(Result, results, diff_results=None, *, # find the best widths, note that column 0 contains the names and is # handled a bit differently - widths = co.defaultdict(lambda: 7, {0: 23}) + widths = co.defaultdict(lambda: 7, {0: 7}) notes = co.defaultdict(lambda: 0) for line in lines: for i, x in enumerate(line): diff --git a/scripts/perf.py b/scripts/perf.py index 1038464f..85218f2b 100755 --- a/scripts/perf.py +++ b/scripts/perf.py @@ -933,7 +933,7 @@ def table(Result, results, diff_results=None, *, # find the best widths, note that column 0 contains the names and is # handled a bit differently - widths = co.defaultdict(lambda: 7, {0: 23}) + widths = co.defaultdict(lambda: 7, {0: 7}) notes = co.defaultdict(lambda: 0) for line in lines: for i, x in enumerate(line): diff --git a/scripts/perfbd.py b/scripts/perfbd.py index 4a5baf61..6ece974d 100755 --- a/scripts/perfbd.py +++ b/scripts/perfbd.py @@ -897,7 +897,7 @@ def table(Result, results, diff_results=None, *, # find the best widths, note that column 0 contains the names and is # handled a bit differently - widths = co.defaultdict(lambda: 7, {0: 23}) + widths = co.defaultdict(lambda: 7, {0: 7}) notes = co.defaultdict(lambda: 0) for line in lines: for i, x in enumerate(line): diff --git a/scripts/stack.py b/scripts/stack.py index 58fc8b0b..3df30859 100755 --- a/scripts/stack.py +++ b/scripts/stack.py @@ -579,7 +579,7 @@ def table(Result, results, diff_results=None, *, # find the best widths, note that column 0 contains the names and is # handled a bit differently - widths = co.defaultdict(lambda: 7, {0: 23}) + widths = co.defaultdict(lambda: 7, {0: 7}) notes = co.defaultdict(lambda: 0) for line in lines: for i, x in enumerate(line): diff --git a/scripts/structs.py b/scripts/structs.py index c290fa6e..c0368c13 100755 --- a/scripts/structs.py +++ b/scripts/structs.py @@ -474,7 +474,7 @@ def table(Result, results, diff_results=None, *, # find the best widths, note that column 0 contains the names and is # handled a bit differently - widths = co.defaultdict(lambda: 7, {0: 23}) + widths = co.defaultdict(lambda: 7, {0: 7}) notes = co.defaultdict(lambda: 0) for line in lines: for i, x in enumerate(line):