ml: Remove ML Service autotest

This wasn't testing much, no longer passes now that ML Service starts
on-demand instead of at startup, and is superceded by the Mojo bootstrap
tast test platform.MlServiceBootstrap added in crrev.com/c/1229816.

TEST=no
CQ-DEPEND=CL:1234074
BUG=chromium:836102

Change-Id: I67d23a674ce82bedc7a90ccb870d45174023df0b
Reviewed-on: https://chromium-review.googlesource.com/1234097
Commit-Ready: Andrew Moylan <amoylan@chromium.org>
Tested-by: Andrew Moylan <amoylan@chromium.org>
Reviewed-by: Dan Erat <derat@chromium.org>
diff --git a/client/site_tests/ml_CheckMlProcesses/control b/client/site_tests/ml_CheckMlProcesses/control
deleted file mode 100644
index ff209f2..0000000
--- a/client/site_tests/ml_CheckMlProcesses/control
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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 = 'Chrome OS Team'
-NAME = 'ml_CheckMlProcesses'
-ATTRIBUTES = 'suite:ml_service'
-TIME = 'SHORT'
-TEST_TYPE = 'client'
-JOB_RETRIES = 0
-
-DOC = """
-Verifies that the ml_service starts without error, as a test for regressions in
-the minijail and seccomp policy configuration.
-"""
-
-ML_PROCESSES = ['ml_service']
-
-job.run_test('platform_CheckCriticalProcesses', process_list=ML_PROCESSES)
diff --git a/site_utils/attribute_whitelist.txt b/site_utils/attribute_whitelist.txt
index a682c8a..3d50d03 100644
--- a/site_utils/attribute_whitelist.txt
+++ b/site_utils/attribute_whitelist.txt
@@ -147,7 +147,6 @@
 suite:manual
 suite:memory_qual
 suite:memory_qual_quick
-suite:ml_service
 suite:mmc_qual
 suite:moblab
 suite:moblab_quick
diff --git a/test_suites/control.ml_service b/test_suites/control.ml_service
deleted file mode 100644
index 34f5217..0000000
--- a/test_suites/control.ml_service
+++ /dev/null
@@ -1,24 +0,0 @@
-# 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 = "Chrome OS Team"
-NAME = "ml_service"
-PURPOSE = "Verify the ml_service lifecycle."
-TIME = "SHORT"
-TEST_CATEGORY = "General"
-TEST_CLASS = "suite"
-TEST_TYPE = "Server"
-
-DOC = """
-Tests the ml_service daemon start/stop and Mojo calls.
-"""
-
-import common
-from autotest_lib.server.cros.dynamic_suite import dynamic_suite
-
-args_dict['add_experimental'] = True
-args_dict['name'] = NAME
-args_dict['job'] = job
-
-dynamic_suite.reimage_and_run(**args_dict)