Author: gnichols Date: 2011-04-18 13:29:53 +0000 (Mon, 18 Apr 2011) New Revision: 880
Modified: trunk/v7/test.py Log: 649520 - fv_* tests are not being planned on 32-bit RHEL5.5
Modified: trunk/v7/test.py =================================================================== --- trunk/v7/test.py 2011-04-18 13:28:51 UTC (rev 879) +++ trunk/v7/test.py 2011-04-18 13:29:53 UTC (rev 880) @@ -515,7 +515,7 @@ self.isProcessLimited = False try: arch = Command("uname -i").getString() - if (arch == "i386" or arch == "s390" )and self.freeMemory > 1024: + if (arch in [Constants.i386, Constants.i686, Constants.s390])and self.freeMemory > 1024: self.isProcessLimited = True self.processMemory = 1024 # MB, due to 32-bit address space print "%s arch, Limiting Process Memory: %u" % (arch, self.processMemory)
v7-commits@lists.stg.fedorahosted.org