I have attached the patch for the packaging system.
The documentation is available at : http://test.kernel.org/autotest/PackagingSystem
Signed-off-by: Ashwin Ganti <aganti@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@1953 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/frontend/afe/control_file.py b/frontend/afe/control_file.py
index 3a76e26..49572d7 100644
--- a/frontend/afe/control_file.py
+++ b/frontend/afe/control_file.py
@@ -86,6 +86,10 @@
def get_tests_stanza(tests, is_server, prepend=[], append=[]):
raw_control_files = [read_control_file(test) for test in tests]
+ return _get_tests_stanza(raw_control_files, is_server, prepend, append)
+
+
+def _get_tests_stanza(raw_control_files, is_server, prepend, append):
if is_server:
return '\n'.join(raw_control_files)
raw_steps = prepend + [add_boilerplate_to_nested_steps(step)