Chromium Code Reviews| 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 # Define this is run on reference build or not. | |
|
dennis_jeffrey
2011/05/19 01:20:13
I recommend making the comment a little more speci
imasaki1
2011/05/20 05:12:01
Done.
| |
| 60 REFERENCE_BUILD_ENV_NAME = 'REFERENCE_BUILD' | |
| OLD | NEW |