[LOSTWAGES] service.cgi incorporate client id

Brian Vincent vinn at theshell.com
Thu Apr 1 01:19:05 CST 2004


Changelog:
	Incorporate client id into running of tests.

Index: service.cgi
===================================================================
RCS file: /home/wine/tools/winetest/service.cgi,v
retrieving revision 1.7
diff -u -r1.7 service.cgi
--- service.cgi	31 Mar 2004 21:30:15 -0000	1.7
+++ service.cgi	1 Apr 2004 07:15:33 -0000
@@ -203,10 +203,10 @@
 
     if (substr($local_filename, -4, 4) =~ ".zip") {
 	print "unzip $local_filename\n";
-        print "run $_[0].exe\n";		# Just guessing on name? 
+        print "run $_[0].exe -t $data_received{\"id\"}\n";  # Guessing on name 
     }
     else {
-	print "run $local_filename\n";
+	print "run $local_filename -t $data_received{\"id\"}\n";
     }
 
     print "sleep $sleeptime\n";
@@ -352,7 +352,7 @@
 sub get_all_cookies {
 
     foreach $key (keys %data_received) {
-	next if ($key eq "publish" or $key eq "url" or $key eq "debug");
+	next if ($key eq "publish" or $key eq "url" or $key eq "debug" or $key eq "id");
         $cookie{$key} = read_cookie($key);
     }
 }



More information about the wine-patches mailing list