When running a test use the test name as the group name, instead of
prepending "test." to it. The subdir actually contains all the
information we want, instead of stripping off the tag.

Signed-off-by: John Admanski <jadmanski@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@945 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/job.py b/client/bin/job.py
index 81b7308..5457dcf 100755
--- a/client/bin/job.py
+++ b/client/bin/job.py
@@ -244,8 +244,7 @@
 			else:
 				self.record('GOOD', subdir, testname,
 					    'completed successfully')
-		name = "test." + testname
-		result, exc_info = self.__rungroup(name, group_func)
+		result, exc_info = self.__rungroup(subdir, group_func)
 
 		if exc_info and isinstance(exc_info[1], TestError):
 			return False