VirtualBox

Changeset 61149 in vbox for trunk/src/VBox/ValidationKit


Ignore:
Timestamp:
May 24, 2016 1:54:00 AM (9 years ago)
Author:
vboxsync
Message:

testmanager: Try allow unicode svn comments. (To try deal with r103985.)

Location:
trunk/src/VBox/ValidationKit/testmanager/core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testmanager/core/base.py

    r56761 r61149  
    274274            (oNewValue, sError) = self.validateStr( oValue, aoNilValues = aoNilValues, fAllowNull = fAllowNull,
    275275                                                    cchMin = getattr(self, 'kcchMin_' + sAttr, 0),
    276                                                     cchMax = getattr(self, 'kcchMax_' + sAttr, 4096));
     276                                                    cchMax = getattr(self, 'kcchMax_' + sAttr, 4096),
     277                                                    fAllowUnicodeSymbols = getattr(self, 'kfAllowUnicode_' + sAttr, False) );
    277278        ## @todo al.
    278279        elif sPrefix == 'aid':
  • trunk/src/VBox/ValidationKit/testmanager/core/vcsrevisions.py

    r56295 r61149  
    5151
    5252    kasAllowNullAttributes      = [ ];
     53    kfAllowUnicode_sMessage     = True;
    5354
    5455    def __init__(self):
     
    160161        dDataErrors = oData.validateAndConvert(self._oDb);
    161162        if len(dDataErrors) > 0:
    162             raise TMExceptionBase('Invalid data passed to addCvsRevision(): %s' % (dDataErrors,));
     163            raise TMExceptionBase('Invalid data passed to addVcsRevision(): %s' % (dDataErrors,));
    163164
    164165        # Does it already exist?
Note: See TracChangeset for help on using the changeset viewer.

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