OLD | NEW |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 | 2 |
3 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 | 7 |
8 class MediaTestEnvNames: | 8 class MediaTestEnvNames: |
9 """Class that contains all environment names used in media tests. | 9 """Class that contains all environment names used in media tests. |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
48 MEDIA_FILENAME_NICKNAME_ENV_NAME = 'MEDIA_FILENAME_NICKNAME' | 48 MEDIA_FILENAME_NICKNAME_ENV_NAME = 'MEDIA_FILENAME_NICKNAME' |
49 | 49 |
50 # Define the interval for the measurement. | 50 # Define the interval for the measurement. |
51 MEASURE_INTERVAL_ENV_NAME = 'MEASURE_INTERVALS' | 51 MEASURE_INTERVAL_ENV_NAME = 'MEASURE_INTERVALS' |
52 | 52 |
53 # Define the test scenario file, which contains all operations during tests. | 53 # Define the test scenario file, which contains all operations during tests. |
54 TEST_SCENARIO_FILE_ENV_NAME = 'TEST_SCENARIO_FILE' | 54 TEST_SCENARIO_FILE_ENV_NAME = 'TEST_SCENARIO_FILE' |
55 | 55 |
56 # Define the test scenario, which contains operations during tests. | 56 # Define the test scenario, which contains operations during tests. |
57 TEST_SCENARIO_ENV_NAME = 'TEST_SCENARIO' | 57 TEST_SCENARIO_ENV_NAME = 'TEST_SCENARIO' |
58 | |
59 # 'True' to run on a reference build, or 'False' otherwise. | |
dennis_jeffrey
2011/05/20 18:10:46
Based on your latest changes, this environment var
imasaki1
2011/05/20 20:50:14
Done.
| |
60 REFERENCE_BUILD_ENV_NAME = 'REFERENCE_BUILD' | |
61 | |
62 # Define the location of the binary used for reference build. | |
dennis_jeffrey
2011/05/20 18:10:46
May want to clarify in this comment whether the lo
imasaki1
2011/05/20 20:50:14
Done.
| |
63 REFERENCE_BUILD_DIR_ENV_NAME = 'REFERENCE_BUILD_DIR' | |
OLD | NEW |