xref: /aosp_15_r20/external/autotest/autotest_lib/test_suites/control.au-m2n (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright 2021 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5AUTHOR = "David Haddock <[email protected]>"
6NAME = "au-m2n"
7PURPOSE = "Suite for M->N autoupdate tests."
8TIME = "SHORT"
9TEST_CATEGORY = "Functional"
10TEST_CLASS = "suite"
11TEST_TYPE = "Server"
12
13DOC = """
14This suite runs various autoupdate tests M to N. This means the tests will
15update from a previous milestone to the current milestone.
16
17Most autoupdate tests go N->N and update from a version to itself. This M->N
18suite should catch regressions that are missed by N->N tests.
19"""
20
21import common
22from autotest_lib.server.cros.dynamic_suite import dynamic_suite
23
24args_dict['name'] = NAME
25args_dict['add_experimental'] = True
26args_dict['max_runtime_mins'] = 60
27args_dict['job'] = job
28
29dynamic_suite.reimage_and_run(**args_dict)
30