VirtualBox

Changeset 102988 in vbox


Ignore:
Timestamp:
Jan 22, 2024 11:32:22 AM (15 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
161220
Message:

ValidationKit/tests/tdUnitTest1.py: Skip tstVMMR0CallHost-1 for asan builds as it triggers a false positive

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py

    r102964 r102988  
    254254    };
    255255
     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
    256262    # Suffix exclude list.
    257263    kasSuffixBlackList = [
     
    12891295                    continue;
    12901296
     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
    12911304                if self._isExcluded(sName, dTestCasesBuggyForHostOs):
    12921305                    reporter.testStart(sName);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette