Fix iperf test and make server/client jobs to write to different result log directory.

Change-Id: Ia7cb8be7e3a25f28c34a8302044cfa530b10ed05

BUG=None
TEST=run it through autoserv.

Review URL: http://codereview.chromium.org/6902127
diff --git a/server/tests/netperf2/netperf2.py b/server/tests/netperf2/netperf2.py
index 108dab8..6317c6c 100644
--- a/server/tests/netperf2/netperf2.py
+++ b/server/tests/netperf2/netperf2.py
@@ -39,9 +39,11 @@
                                           time, stream_list, test, cycles)
 
         server_command = subcommand.subcommand(server_at.run,
-                                    [server_control_file, server.hostname])
+                                    [server_control_file, server.hostname],
+                                    subdir='server')
         client_command = subcommand.subcommand(client_at.run,
-                                    [client_control_file, client.hostname])
+                                    [client_control_file, client.hostname],
+                                    subdir='client')
 
         subcommand.parallel([server_command, client_command])