aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-01-12 18:43:07 -0500
committerEli Schwartz <eschwartz@archlinux.org>2021-01-12 19:19:00 -0500
commitadfcf77109a2c73d88295a0fc60555b34da3eebe (patch)
tree09d7917287337632b28a8ce84828a7d16d85f7d3 /run_unittests.py
parent0063bd35d79e952aa964d7338869d55b91ea4a40 (diff)
downloadmeson-adfcf77109a2c73d88295a0fc60555b34da3eebe.zip
meson-adfcf77109a2c73d88295a0fc60555b34da3eebe.tar.gz
meson-adfcf77109a2c73d88295a0fc60555b34da3eebe.tar.bz2
summary: align left, not align middle
aligning along the left is, I think, what most projects want to do. Aligning along the middle looks subjectively ugly, and objectively prevents me from further indenting an element, e.g. Build information: prefix : /usr sysconfdir : /etc conf file : /etc/myprogram.conf
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/run_unittests.py b/run_unittests.py
index bf6a7ad..32b926c 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -4720,32 +4720,32 @@ class AllPlatformTests(BasePlatformTests):
expected = textwrap.dedent(r'''
Some Subproject 2.0
- string: bar
+ string : bar
integer: 1
boolean: True
My Project 1.0
Configuration
- Some boolean: False
+ Some boolean : False
Another boolean: True
- Some string: Hello World
- A list: string
+ Some string : Hello World
+ A list : string
1
True
- empty list:
- A number: 1
- yes: YES
- no: NO
- coma list: a, b, c
+ empty list :
+ A number : 1
+ yes : YES
+ no : NO
+ coma list : a, b, c
Plugins
- long coma list: alpha, alphacolor, apetag, audiofx, audioparsers, auparse,
+ long coma list : alpha, alphacolor, apetag, audiofx, audioparsers, auparse,
autodetect, avi
Subprojects
- sub: YES
- sub2: NO Problem encountered: This subproject failed
+ sub : YES
+ sub2 : NO Problem encountered: This subproject failed
''')
expected_lines = expected.split('\n')[1:]
out_start = out.find(expected_lines[0])