From cf0fd666395367c572912d1b84bd3e35deef735b Mon Sep 17 00:00:00 2001 From: peace-maker Date: Sun, 5 Jan 2025 21:43:27 +0100 Subject: [PATCH] Validate debug rtti sections in shell tests Check if we're still emitting the expected debug information format. --- .gitignore | 1 + tests/runtests.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d59432d82..34a887197 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,7 @@ LIB-Debug/ # AMBuild build directories build/ +objdir/ obj-*/ *~ *.rej diff --git a/tests/runtests.py b/tests/runtests.py index 35bb6d9d8..55d73d902 100644 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -131,14 +131,14 @@ def find_shells(self): if rc == 0 and 'JIT' in stdout: self.shells.append({ 'path': path, - 'args': [], + 'args': ['--validate-debug-sections'], 'name': 'default-' + arch, 'env': env, }) self.shells.append({ 'path': path, - 'args': ['--disable-jit'], + 'args': ['--validate-debug-sections', '--disable-jit'], 'name': 'interpreter-' + arch, 'env': env, })