@@ -244,9 +244,9 @@ def parse_log(self):
if os.getenv('V'):
print('\nlogs from biosbits follows:')
- print('==========================================\n\n')
+ print('==========================================\n')
print(log)
- print('\n==========================================\n')
+ print('==========================================\n')
matchiter = re.finditer(r'(.*Summary: )(\d+ passed), (\d+ failed).*',
log)
@@ -312,6 +312,8 @@ endif
qtest_executables = {}
other_deps = []
+subdir('acpi-bits')
+
foreach dir : target_dirs
if not dir.endswith('-softmmu')
continue
added acpi-bits subdirectory in meson.build so that the tests in that subdirectory can be run as a part of make check. Signed-off-by: Ani Sinha <ani@anisinha.ca> --- tests/qtest/acpi-bits/acpi-bits-test.py | 4 ++-- tests/qtest/meson.build | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-)