Lines Matching defs:reporter

38 from testdriver import reporter;
233 reporter.fatal('The OS of test VM "%s" cannot be guessed' % (self.sVmName,));
245 reporter.fatal('The OS of test VM "%s" with sKind="%s" cannot be guessed' % (self.sVmName, self.sKind));
258 reporter.fatal('The OS of test VM "%s", sKind="%s" cannot be guessed' % (self.sVmName, self.sKind));
472 reporter.log('');
473 reporter.log('Test VM selection and general config options:');
474 reporter.log(' --virt-modes <m1[:m2[:]]');
475 reporter.log(' Default: %s' % (':'.join(self.asVirtModesDef)));
476 reporter.log(' --skip-virt-modes <m1[:m2[:]]');
477 reporter.log(' Use this to avoid hwvirt or hwvirt-np when not supported by the host');
478 reporter.log(' since we cannot detect it using the main API. Use after --virt-modes.');
479 reporter.log(' --cpu-counts <c1[:c2[:]]');
480 reporter.log(' Default: %s' % (':'.join(str(c) for c in self.acCpusDef)));
481 reporter.log(' --test-vms <vm1[:vm2[:...]]>');
482 reporter.log(' Test the specified VMs in the given order. Use this to change');
483 reporter.log(' the execution order or limit the choice of VMs');
484 reporter.log(' Default: %s (all)' % (self.getAllVmNames(),));
485 reporter.log(' --skip-vms <vm1[:vm2[:...]]>');
486 reporter.log(' Skip the specified VMs when testing.');
487 reporter.log(' --snapshot-restore-current');
488 reporter.log(' Restores the current snapshot and resumes execution.');
489 reporter.log(' --paravirt-modes <pv1[:pv2[:]]>');
490 reporter.log(' Set of paravirtualized providers (modes) to tests. Intersected with what the test VM supports.');
491 reporter.log(' Default is the first PV mode the test VMs support, generally same as "legacy".');
571 reporter.log('warning: The "--test-vms" value "%s" does not specify any of our test VMs.' % (s,));
579 reporter.log('VM "%s" will be restored.' % (oTestVm.sVmName));
667 reporter.log('Hardware assisted virtualization is not available on the host, skipping it.');
671 reporter.log('Nested paging not supported by the host, skipping it.');
696 reporter.log2('Ignoring VM %s (fSkip = True).' % (oTestVm.sVmName,));
698 reporter.testStart(oTestVm.sVmName);
700 reporter.testDone(fSkipped = True);
721 reporter.testStart('1 cpu');
723 reporter.testStart('%u cpus' % (cCpus));
725 reporter.testDone(fSkipped = True);
732 reporter.testStart('%s' % ( g_dsVirtModeDescs[sVirtMode], ) );
738 reporter.testStart('%s' % ( sParavirtMode, ) );
746 reporter.errorXcpt(cFrames = 9);
755 reporter.errorXcpt(cFrames = 9);
758 reporter.maybeErr(reporter.testErrorCount() == 0, 'fnCallback failed');
760 reporter.log('getReconfiguredVm failed');
766 reporter.testDone(fSkipped = (rc2 is None));
768 reporter.testDone(fSkipped = cTests == cStartTests);
770 reporter.testDone(fSkipped = cTests == 0);
772 _, cErrors = reporter.testDone();