From f7af81561e791f8a618b8611522846ccd1180235 Mon Sep 17 00:00:00 2001 From: Daniel Bak Date: Thu, 6 Jun 2019 13:11:11 -0600 Subject: [PATCH] Added captures to errnoParser and nanParser as these were not capturing correctly on my machine. --- scripts/approvalTests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/approvalTests.py b/scripts/approvalTests.py index bb01e6d570..a6d077bd6a 100755 --- a/scripts/approvalTests.py +++ b/scripts/approvalTests.py @@ -48,6 +48,8 @@ \(\*__error\(\)\) | \(\*_errno\(\)\) + | + \(\*__errno\(\)\) ''', re.VERBOSE) sinceEpochParser = re.compile(r'\d+ .+ since epoch') infParser = re.compile(r''' @@ -66,6 +68,8 @@ | \(__builtin_nanf\ \(""\)\) # Linux (ubuntu) NAN macro | + \(__builtin_nanf \(""\)\) + | __builtin_nanf\("0x"\) # The weird content of the brackets is there because a different parser has already ran before this one ''', re.VERBOSE)