def main(): try: coi = CacheObjectInterface(FMQLEP) logger = DefaultLogger() fmqlQP = FMQLQP(coi, logger) except Exception as e: print "Failed to log in to C***: %s ... exiting" % e return times = [] try: fails = 0 total = 0 testNo = 0 stopOnFail = True for i, testSet in enumerate(CTESTSETS, 1): for j, testDef in enumerate(testSet["definitions"], 1): total += 1 if not runTest(fmqlQP, testSet["name"], str(i) + ":" + str(j), testDef): fails += 1 if stopOnFail: break print "=== All Done: %d of %d failed ===" % (fails, total) except Exception as e: print "Exception %s" % e traceback.print_exc()
def main(): coi = CacheObjectInterface(FMQLEP) times = [] try: fails = 0 total = 0 testNo = 0 stopOnFail = True for i, testSet in enumerate(CTESTSETS, 1): for j, testDef in enumerate(testSet["definitions"], 1): total += 1 if not runTest(coi, testSet["name"], str(i) + ":" + str(j), testDef): fails += 1 if stopOnFail: break print "=== All Done: %d of %d failed ===" % (fails, total) except Exception as e: print "Exception %s" % e traceback.print_exc()