Changeset 102988 in vbox
- Timestamp:
- Jan 22, 2024 11:32:22 AM (15 months ago)
- svn:sync-xref-src-repo-rev:
- 161220
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r102964 r102988 254 254 }; 255 255 256 ## The permanent exclude list for ASAN builds because they trigger false-positives. 257 # @note Stripped of extensions! 258 kdTestCasesBlackListAsan = { 259 'testcase/tstVMMR0CallHost-1': '', # Triggers a stack overflow error on linux.amd64 260 } 261 256 262 # Suffix exclude list. 257 263 kasSuffixBlackList = [ … … 1289 1295 continue; 1290 1296 1297 # Some testcases don't work with ASAN. 1298 if self.getBuildType() == 'asan' \ 1299 and self._isExcluded(sName, self.kdTestCasesBlackListAsan): 1300 # (No testStart/Done or accounting here!) 1301 reporter.log('%s: SKIPPED (blacklisted ASAN)' % (sName,)); 1302 continue; 1303 1291 1304 if self._isExcluded(sName, dTestCasesBuggyForHostOs): 1292 1305 reporter.testStart(sName);
Note:
See TracChangeset
for help on using the changeset viewer.