autotest: define cts suite.

BUG=chromium:644471
TEST=None.

Change-Id: I29cae255cb6f22efdae4de47646b426680ae5cb1
Reviewed-on: https://chromium-review.googlesource.com/398620
Commit-Ready: Ilja H. Friedel <ihf@chromium.org>
Commit-Ready: Keith Haddow <haddowk@chromium.org>
Tested-by: Ilja H. Friedel <ihf@chromium.org>
Tested-by: Keith Haddow <haddowk@chromium.org>
Reviewed-by: Keith Haddow <haddowk@chromium.org>
Reviewed-by: Haixia Shi <hshi@chromium.org>
(cherry picked from commit 07873321aa158d5b8353756c030f0040ef13d7c0)
Reviewed-on: https://chromium-review.googlesource.com/399141
Reviewed-by: Ilja H. Friedel <ihf@chromium.org>
diff --git a/test_suites/control.cts b/test_suites/control.cts
new file mode 100644
index 0000000..2a786ec
--- /dev/null
+++ b/test_suites/control.cts
@@ -0,0 +1,27 @@
+# Copyright 2016 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+AUTHOR = "ARC Team"
+NAME = "cts"
+PURPOSE = "Runs the CTS suite."
+TIME = "LONG"
+TEST_CATEGORY = "functional"
+TEST_CLASS = "suite"
+TEST_TYPE = "Server"
+
+DOC = """
+This suite wraps the current CTS bundle for autotest.
+"""
+
+import common
+from autotest_lib.server.cros import provision
+from autotest_lib.server.cros.dynamic_suite import dynamic_suite
+
+args_dict['max_runtime_mins'] = 960
+args_dict['add_experimental'] = True
+args_dict['name'] = 'cts'
+args_dict['version_prefix'] = provision.CROS_VERSION_PREFIX
+args_dict['job'] = job
+
+dynamic_suite.reimage_and_run(**args_dict)