Lines Matching refs:line
216 while (my $line = <$data>) {
217 chomp $line;
218 $line =~ s{\r\n}{\n}g; # adjust line endings
219 $line =~ s{_CA_DN}{$ca_dn}g;
220 $line =~ s{_SERVER_DN}{$server_dn}g;
221 $line =~ s{_SERVER_HOST}{$server_host}g;
222 $line =~ s{_SERVER_PORT}{$server_port}g;
223 $line =~ s{_SERVER_TLS}{$server_tls}g;
224 $line =~ s{_SERVER_PATH}{$server_path}g;
225 $line =~ s{_SERVER_CERT}{$server_cert}g;
226 $line =~ s{_KUR_PORT}{$kur_port}g;
227 $line =~ s{_PBM_PORT}{$pbm_port}g;
228 $line =~ s{_PBM_REF}{$pbm_ref}g;
229 $line =~ s{_PBM_SECRET}{$pbm_secret}g;
230 $line =~ s{_RESULT_DIR}{$result_dir}g;
232 next LOOP if $server_tls == 0 && $line =~ m/,\s*-tls_used\s*,/;
234 if ($line =~ m/,\s*-no_proxy\s*,(.*?)(,|$)/) {
238 $line =~ s{-section,,}{-section,,-no_proxy,127.0.0.1,} ;
240 if ($line =~ m/,\s*-proxy\s*,/) {
243 $line =~ s{-section,,}{-section,,-proxy,$proxy,};
245 $line =~ s{-section,,}{-section,,-certout,$result_dir/test.cert.pem,}
246 if $aspect ne "commands" || $line =~ m/,\s*-cmd\s*,\s*(ir|cr|p10cr|kur)\s*,/;
247 $line =~ s{-section,,}{-config,../$test_config,-section,$server_name $aspect,};
249 my @fields = grep /\S/, split ",", $line;