Fixed multiple kernel control file generation for server side tests for
the case where the original test control file gives a "tag" argument to
run_test() by changing the server_job default test_tag attribute to be
instead a tag prefix.

Signed-off-by: Mihai Rusu <dizzy@google.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@3465 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/frontend/afe/control_file.py b/frontend/afe/control_file.py
index fbf3b47..3ce0686 100644
--- a/frontend/afe/control_file.py
+++ b/frontend/afe/control_file.py
@@ -83,7 +83,7 @@
         # a suffix to the test name otherwise we cannot run the same test on
         # different kernel versions
         if len(kernel_list) > 1:
-            job.set_test_tag(kernel_host.get_kernel_ver())
+            job.set_test_tag_prefix(kernel_host.get_kernel_ver())
         step_test()
 
 def step_test():