diff options
author | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2010-03-30 17:08:20 +0000 |
---|---|---|
committer | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2010-03-30 17:08:20 +0000 |
commit | 923cc88066f3689f2ab8d5973d3ab7f24d2480a7 (patch) | |
tree | c90ec9bf838681b84f60c5ebdd52051ed32174c3 /server | |
parent | e594ddf96e1fc04434a230a33b48aedd76b32a8d (diff) |
Propagate user args to the client-side control file
From: petkov@chromium.org
git-svn-id: svn://test.kernel.org/autotest/trunk@4355 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'server')
-rw-r--r-- | server/autotest.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/autotest.py b/server/autotest.py index c35f4a1e..f19e350b 100644 --- a/server/autotest.py +++ b/server/autotest.py @@ -357,6 +357,9 @@ class BaseAutotest(installable_object.InstallableObject): # build up the initialization prologue for the control file prologue_lines = [] + # Add the additional user arguments + prologue_lines.append("args = %r\n" % self.job._args) + # If the packaging system is being used, add the repository list. repos = None try: |