aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlja H. Friedel <ihf@chromium.org>2022-05-11 21:39:05 -0700
committerIlja Friedel <ihf@chromium.org>2022-05-26 19:54:20 +0000
commit67b4077f452bf2b15b246ed4c78f373c3e0b997a (patch)
tree16720a859d28850454a294f7cd485f59d5d172a2
parent1114cfe38f39e587ff8d8eeff5e2101989b3b3ca (diff)
downloadautotest-67b4077f452bf2b15b246ed4c78f373c3e0b997a.tar.gz
tast: remove not needed control files
We sharded the control files in the previous change and remove them once we verify that the lab is running the new ones correctly. BUG=b:232335320 TEST=Check stainless. Change-Id: I70f629db5ac84ac32761573c3db450945513f558 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/3643496 Reviewed-by: Po-Hsien Wang <pwang@chromium.org> Reviewed-by: Seewai Fu <seewaifu@google.com> Tested-by: Ilja Friedel <ihf@chromium.org>
-rw-r--r--server/site_tests/tast/control.av-trace-nightly37
-rw-r--r--server/site_tests/tast/control.borealis-weekly37
2 files changed, 0 insertions, 74 deletions
diff --git a/server/site_tests/tast/control.av-trace-nightly b/server/site_tests/tast/control.av-trace-nightly
deleted file mode 100644
index 30119a4572..0000000000
--- a/server/site_tests/tast/control.av-trace-nightly
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2020 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 = 'Chromium OS team'
-NAME = 'tast.av-trace-nightly'
-TIME = 'MEDIUM'
-TEST_TYPE = 'Server'
-ATTRIBUTES = 'suite:av-analysis_trace_per-day'
-MAX_RESULT_SIZE_KB = 1024 * 1024
-PY_VERSION = 3
-
-# tast.py uses binaries installed from autotest_server_package.tar.bz2.
-REQUIRE_SSP = True
-
-DOC = '''
-Run the Tast graphics-trace test suite for screen capture analysis.
-
-Tast is an integration-testing framework analagous to the test-running portion
-of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for
-more information.
-
-This test runs Tast-based graphics-trace tests against a remote DUT.
-
-See http://go/tast-failures for information about investigating failures.
-'''
-
-def run(machine):
- host=hosts.create_host(machine)
- host.reboot()
- job.run_test('tast',
- host=hosts.create_host(machine),
- test_exprs=['("group:graphics" && graphics_nightly && graphics_trace && graphics_av_analysis)'],
- ignore_test_failures=True, max_run_sec=21600,
- command_args=args)
-
-parallel_simple(run, machines)
diff --git a/server/site_tests/tast/control.borealis-weekly b/server/site_tests/tast/control.borealis-weekly
deleted file mode 100644
index 6d5417f653..0000000000
--- a/server/site_tests/tast/control.borealis-weekly
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2021 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 = 'Chromium OS team'
-NAME = 'tast.borealis-weekly'
-TIME = 'LONG'
-TEST_TYPE = 'Server'
-ATTRIBUTES = 'suite:borealis_per-week'
-MAX_RESULT_SIZE_KB = 1024 * 1024
-PY_VERSION = 3
-
-# tast.py uses binaries installed from autotest_server_package.tar.bz2.
-REQUIRE_SSP = True
-
-DOC = '''
-Run the Tast borealis test suite.
-
-Tast is an integration-testing framework analagous to the test-running portion
-of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for
-more information.
-
-This test runs Tast-based borealis tests against a remote DUT.
-
-See http://go/tast-failures for information about investigating failures.
-'''
-
-def run(machine):
- host=hosts.create_host(machine)
- host.reboot()
- job.run_test('tast',
- host=host,
- test_exprs=['("group:borealis" && borealis_weekly)'],
- ignore_test_failures=True, max_run_sec=10800,
- command_args=args)
-
-parallel_simple(run, machines)