Changeset 94571 in vbox for trunk/src/VBox
- Timestamp:
- Apr 12, 2022 9:43:59 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstIEMAImpl.cpp
r94569 r94571 764 764 uint32_t i = g_cExcludeTestPatterns; 765 765 while (i-- > 0) 766 if (RTStrSimplePatternM atch(g_apszExcludeTestPatterns[i], pszName))766 if (RTStrSimplePatternMultiMatch(g_apszExcludeTestPatterns[i], RTSTR_MAX, pszName, RTSTR_MAX, NULL)) 767 767 return false; 768 768 … … 774 774 /* Otherwise only tests in the include patters gets tested: */ 775 775 while (i-- > 0) 776 if (RTStrSimplePatternM atch(g_apszIncludeTestPatterns[i], pszName))776 if (RTStrSimplePatternMultiMatch(g_apszIncludeTestPatterns[i], RTSTR_MAX, pszName, RTSTR_MAX, NULL)) 777 777 return true; 778 778
Note:
See TracChangeset
for help on using the changeset viewer.