diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-09-29 08:53:50 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-09-29 21:47:31 +0300 |
commit | 65b144bc85473d0d31e42aa57a05ed725b60d621 (patch) | |
tree | 974831571f1f8fe2cd9fe0016043262475a481c3 /mesonbuild/mlog.py | |
parent | 7ad54cce49ce22b063e0cd56edb4b7f722dc5e8e (diff) | |
download | meson-65b144bc85473d0d31e42aa57a05ed725b60d621.zip meson-65b144bc85473d0d31e42aa57a05ed725b60d621.tar.gz meson-65b144bc85473d0d31e42aa57a05ed725b60d621.tar.bz2 |
Revert "mtest: fix test output issues (in console)"
This reverts commit 5fcb0e6525e2044e0f82bda488a51350e0f7f29f.
The commit is a massive change that should have been split in
separate pieces, and it also removes a few features:
* in verbose mode, subtests are not printed as they happen
* in non-verbose mode the progress report does not include the
number of subtests that have been run
* in non-parallel mode, output is batched rather than printed as
it happens
Furthermore, none of these changes are not documented in the release
notes. Revert so that each proposal can be tested, evaluated and
documented individually.
Diffstat (limited to 'mesonbuild/mlog.py')
-rw-r--r-- | mesonbuild/mlog.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/mlog.py b/mesonbuild/mlog.py index 0385e0b..18cbc48 100644 --- a/mesonbuild/mlog.py +++ b/mesonbuild/mlog.py @@ -158,9 +158,6 @@ class AnsiText: def bold(text: str, quoted: bool = False) -> AnsiDecorator: return AnsiDecorator(text, "\033[1m", quoted=quoted) -def italic(text: str, quoted: bool = False) -> AnsiDecorator: - return AnsiDecorator(text, "\033[3m", quoted=quoted) - def plain(text: str) -> AnsiDecorator: return AnsiDecorator(text, "") |