mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
Corrected ARM/Thumb adcs/sbcs flag update macros.
This commit is contained in:
parent
0956746cf7
commit
7130901ed5
9 changed files with 226 additions and 21 deletions
|
@ -103,7 +103,10 @@ class PCodeTestBuild(BuildUtil):
|
|||
|
||||
# Get a list of strings to filter input files
|
||||
available_files = sorted(glob.glob(self.config.format('%(pcodetest_src)s/*')))
|
||||
|
||||
if self.config.proc_test:
|
||||
available_files.extend(sorted(glob.glob(self.config.format('%(pcodetest_src)s/%(proc_test)s/*'))))
|
||||
|
||||
available_files = [x for x in available_files if not os.path.isdir(x) ]
|
||||
# skip any?
|
||||
skip_files = self.config.skip_files
|
||||
if len(skip_files) > 0:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue