Create the 'experimental' suite for experimental tests.

Use of EXPERIMENTAL = "True" is being deprecated.  Instead,
"experimental" tests are to be place in any non-BVT suite.  This
provides a new suite named "experimental" that runs on each new
build as a convenience for tests that have no other suite to live
in.

BUG=None
TEST=None

Change-Id: Idd1734098c47ed391fb94a3764aae85f8b335b1b
Reviewed-on: https://chromium-review.googlesource.com/197379
Reviewed-by: Prashanth B <beeps@chromium.org>
Commit-Queue: Richard Barnette <jrbarnette@chromium.org>
Tested-by: Richard Barnette <jrbarnette@chromium.org>
diff --git a/suite_scheduler.ini b/suite_scheduler.ini
index b387971..4815120 100644
--- a/suite_scheduler.ini
+++ b/suite_scheduler.ini
@@ -109,6 +109,11 @@
 pool: suites
 num: 2
 
+[ExperimentalTests]
+run_on: nightly
+suite: experimental
+pool: suites
+
 [JailedBuild]
 run_on: new_build
 suite: jailed_build
diff --git a/test_suites/control.experimental b/test_suites/control.experimental
new file mode 100644
index 0000000..f76f660
--- /dev/null
+++ b/test_suites/control.experimental
@@ -0,0 +1,41 @@
+# Copyright (c) 2014 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 = "Chrome OS Team"
+NAME = "experimental"
+PURPOSE = "Staging ground for BVT candidates"
+CRITERIA = "Failures in this suite do not block release of a build"
+
+TIME = "SHORT"
+TEST_CATEGORY = "General"
+TEST_CLASS = "suite"
+TEST_TYPE = "Server"
+
+DOC = """
+Before a test is added to the BVT, it must demonstrate a track
+record of stability running in the lab.  The track record is
+created by adding it to a suite and allowing it to run.  The
+'experimental' suite can be used when no other more convenient
+suite is available for the purpose.
+
+@param build: The name of the image to test.
+              Ex: x86-mario-release/R17-1412.33.0-a1-b29
+@param board: The board to test on. Ex: x86-mario
+@param pool: The pool of machines to utilize for scheduling. If pool=None
+             board is used.
+@param check_hosts: require appropriate live hosts to exist in the lab.
+"""
+
+import common
+from autotest_lib.server.cros import provision
+from autotest_lib.server.cros.dynamic_suite import dynamic_suite
+
+
+dynamic_suite.reimage_and_run(
+    build=build, board=board, name=NAME, job=job, pool=pool,
+    check_hosts=check_hosts, add_experimental=False, num=num,
+    file_bugs=file_bugs, priority=priority,
+    timeout_mins=timeout_mins,
+    devserver_url=devserver_url, version_prefix=provision.CROS_VERSION_PREFIX,
+    wait_for_results=wait_for_results)