| Index: chromecast/tools/build/generate_test_lists.py
|
| diff --git a/chromecast/tools/build/generate_test_lists.py b/chromecast/tools/build/generate_test_lists.py
|
| index c343c69daa12a382203ff3c282c1160e402f0c18..120afd65eeac2ac45e49d8af00aca2729f4c0b7b 100755
|
| --- a/chromecast/tools/build/generate_test_lists.py
|
| +++ b/chromecast/tools/build/generate_test_lists.py
|
| @@ -53,10 +53,9 @@ def CombineList(test_files_dir, list_output_file, include_filters,
|
| raise Exception("Filter found for unknown target: " +
|
| test_binary_name)
|
|
|
| - if test_binary_name in test_filters:
|
| - test_filters[test_binary_name] += " " + filter
|
| - else:
|
| - test_filters[test_binary_name] = filter
|
| + # Note: This may overwrite a previous rule. This is okay, since higher
|
| + # priority files are evaluated after lower priority files.
|
| + test_filters[test_binary_name] = filter
|
|
|
| test_binaries = [
|
| binary + " " + (additional_runtime_options or "")
|
|
|