Skip to content

Commit

Permalink
Validate debug rtti sections in shell tests
Browse files Browse the repository at this point in the history
Check if we're still emitting the expected debug information format.
  • Loading branch information
peace-maker committed Jan 5, 2025
1 parent fa974cb commit cf0fd66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ LIB-Debug/

# AMBuild build directories
build/
objdir/
obj-*/
*~
*.rej
Expand Down
4 changes: 2 additions & 2 deletions tests/runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
})
Expand Down

0 comments on commit cf0fd66

Please sign in to comment.