Lines Matching defs:reporter

45 from testdriver import reporter;
98 reporter.log('');
99 reporter.log('tdNetBenchmark1 Options:');
100 reporter.log(' --remote-host <hostname|address>');
101 reporter.log(' --local-host <hostname|address>');
102 reporter.log(' --guest-host <hostname|address>');
103 reporter.log(' --virt-modes <m1[:m2[:]]');
104 reporter.log(' Default: %s' % (':'.join(self.asVirtModesDef)));
105 reporter.log(' --cpu-counts <c1[:c2[:]]');
106 reporter.log(' Default: %s' % (':'.join(str(c) for c in self.acCpusDef)));
107 reporter.log(' --nic-types <type1[:type2[:...]]>');
108 reporter.log(' Default: %s' % (':'.join(self.asNicTypes)));
109 reporter.log(' --nic-attachment <bridged|nat>');
110 reporter.log(' Default: %s' % (self.sNicAttachmentDef));
111 reporter.log(' --setups <s1[:s2[:]]>');
112 reporter.log(' Default: %s (all)' % (':'.join(self.asSetupsDef)));
113 reporter.log(' --secs-per-run <seconds>');
114 reporter.log(' Default: %s' % (self.cSecsRunDef));
115 reporter.log(' --tests <s1[:s2[:]]>');
116 reporter.log(' Default: %s (all)' % (':'.join(self.asTestsDef)));
117 reporter.log(' --latency-sizes <size1[:size2[:...]]>');
118 reporter.log(' Default: %s' % (':'.join(str(cb) for cb in self.acbLatencyPktsDef))); # pychecker bug?
119 reporter.log(' --throughput-sizes <size1[:size2[:...]]>');
120 reporter.log(' Default: %s' % (':'.join(str(cb) for cb in self.acbThroughputPktsDef))); # pychecker bug?
121 reporter.log(' --test-vms <vm1[:vm2[:...]]>');
122 reporter.log(' Test the specified VMs in the given order. Use this to change');
123 reporter.log(' the execution order or limit the choice of VMs');
124 reporter.log(' Default: %s (all)' % (':'.join(self.asTestVMsDef)));
125 reporter.log(' --skip-vms <vm1[:vm2[:...]]>');
126 reporter.log(' Skip the specified VMs when testing.');
127 reporter.log(' --quick');
128 reporter.log(' Shorthand for: --virt-modes hwvirt --cpu-counts 1 --secs-per-run 5 --latency-sizes 32');
129 reporter.log(' --throughput-sizes 8192 --test-vms tst-rhel5:tst-win2k3ent:tst-sol10');
228 reporter.log('warning: The "--test-vms" value "%s" does not specify any of our test VMs.' % (s));
251 reporter.log('Local IP : %s' % (self.sLocalIP));
252 reporter.log('Remote IP: %s' % (self.sRemoteIP));
254 reporter.log('Guest IP : use tst-guest2guest');
256 reporter.log('Guest IP : %s' % (self.sGuestIP));
421 reporter.testStart(sTestName);
423 reporter.testStart('TCP latency');
431 reporter.testDone();
433 reporter.testDone(fSkipped = True);
435 reporter.testStart('TCP throughput');
443 reporter.testDone();
445 reporter.testDone(fSkipped = True);
447 reporter.testStart('UDP latency');
450 reporter.testDone(fSkipped = True);
452 reporter.testDone(fSkipped = True);
454 reporter.testStart('UDP throughput');
457 reporter.testDone(fSkipped = True);
459 reporter.testDone(fSkipped = True);
461 reporter.testStart('tbench');
464 reporter.testDone(fSkipped = True);
466 reporter.testDone(fSkipped = True);
468 reporter.testDone(not fRc);
530 reporter.testStart(sVmName);
535 reporter.testStart(sNicType);
547 if cCpus == 1: reporter.testStart('1 cpu');
548 else: reporter.testStart('%u cpus' % (cCpus));
561 reporter.testStart(hsVirtModeDesc[sVirtMode]);
567 reporter.testDone();
568 reporter.testDone();
569 reporter.testDone();
570 reporter.testDone();
585 reporter.log('tst-guest2guest IP: %s' % (self.sGuestIP));