ci: twister: fixed path for tag based filtering

path for posix was not being matched correctly due to a missing /. So
some posix tests were excluded and not excercised.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2022-12-02 12:09:22 +00:00
commit bbf03fd991
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ kernel:
posix: posix:
files: files:
- lib/posix - lib/posix/
# cbprintf: # cbprintf:
# files: # files:

View file

@ -256,7 +256,7 @@ class Filters:
self.tag_options.extend(["-e", tag ]) self.tag_options.extend(["-e", tag ])
if exclude_tags: if exclude_tags:
logging.info(f'Potential tag based filters...') logging.info(f'Potential tag based filters: {exclude_tags}')
def find_excludes(self, skip=[]): def find_excludes(self, skip=[]):
with open("scripts/ci/twister_ignore.txt", "r") as twister_ignore: with open("scripts/ci/twister_ignore.txt", "r") as twister_ignore: