Add separate control files for moblab AU tests.

client_utils.is_moblab() does not work. So just add a new control file
with moblab parameter.

BUG=chromium:936268
TEST=autoupdate_ForcedOOBEUpdate locally

Change-Id: Iad51ed14a87837ce66d28996f60b77850838f763
Reviewed-on: https://chromium-review.googlesource.com/1806149
Tested-by: David Haddock <dhaddock@chromium.org>
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org>
Reviewed-by: David Haddock <dhaddock@chromium.org>
diff --git a/server/site_tests/autoupdate_ForcedOOBEUpdate/control.interrupt.suspend.full.moblab b/server/site_tests/autoupdate_ForcedOOBEUpdate/control.interrupt.suspend.full.moblab
new file mode 100644
index 0000000..3402ede
--- /dev/null
+++ b/server/site_tests/autoupdate_ForcedOOBEUpdate/control.interrupt.suspend.full.moblab
@@ -0,0 +1,29 @@
+# Copyright 2018 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 = "dhaddock, Chromium OS"
+NAME = "autoupdate_ForcedOOBEUpdate.interrupt.suspend.full.moblab"
+PURPOSE = "Test forced update at OOBE with suspend/resume interruptions."
+TIME = "MEDIUM"
+TEST_CATEGORY = "Functional"
+TEST_CLASS = "platform"
+TEST_TYPE = "server"
+ATTRIBUTES = "suite:au_fsi"
+DOC = """
+This tests the forced autoupdate flow at OOBE with interruptions.
+
+During the update it will use powerd to suspend/resume.
+
+"""
+
+from autotest_lib.client.common_lib import utils
+
+args_dict = utils.args_to_dict(args)
+
+def run(machine):
+    host = hosts.create_host(machine)
+    job.run_test('autoupdate_ForcedOOBEUpdate', host=host, full_payload=True,
+                 interrupt='suspend', max_updates=2, moblab=True, **args_dict)
+
+job.parallel_simple(run, machines)