case number.
</server>
+<features>
+A list of features that must be present in the client/library for this test
+to be able to run. Features testable here are:
+SSL
+</features>
+
<killserver>
Using the same syntax as in <server> but when mentioned here these servers
are explicitly KILLED when this test case is completed. Only use this if there
}
return 100;
}
+
+ my @what = getpart("client", "features");
+
+ for(@what) {
+ my $f = $_;
+
+ $f =~ s/\s//g;
+
+ print STDERR "CHECK FOR $f\n";
+
+ if($f eq "SSL") {
+ if($ssl_version) {
+ last;
+ }
+ }
+
+ warn "Test case $testnum requires the missing feature: $_";
+ return 100;
+ }
+
+
my @what = getpart("client", "server");
if(!$what[0]) {