Lines Matching refs:tcase
244 const tcase = testCases[testIndex];
245 if (!tcase) return;
247 console.error(`${prefix}Running '${tcase.title}'`);
249 const cas = tcase.CAs.map(loadPEM);
251 const crl = tcase.crl ? loadPEM(tcase.crl) : null;
258 requestCert: tcase.requestCert,
259 rejectUnauthorized: tcase.rejectUnauthorized
264 if (tcase.renegotiate) {
279 if (tcase.renegotiate && !renegotiated) {
307 const options = tcase.clients[clientIndex];
321 if (tcase.debug) {
323 } else if (tcase.renegotiate) {
327 for (let i = 0; i < tcase.clients.length; i++) {
328 runClient(`${prefix}${i} `, port, tcase.clients[i], function() {
330 if (clientsCompleted === tcase.clients.length) {