| Index: mojo/tools/apptest_runner.py
|
| diff --git a/mojo/tools/apptest_runner.py b/mojo/tools/apptest_runner.py
|
| index c3e61ad107d473c0a091b89f6b2557b6514d4d83..7fdc4cd95df0a45f5a6c4ad88334d6fb16adc9d3 100755
|
| --- a/mojo/tools/apptest_runner.py
|
| +++ b/mojo/tools/apptest_runner.py
|
| @@ -48,6 +48,8 @@ def main():
|
| for apptest_dict in apptest_list:
|
| if apptest_dict.get("disabled"):
|
| continue
|
| + if not config.match_target_os(apptest_dict.get("target_os", [])):
|
| + continue
|
|
|
| apptest = apptest_dict["test"]
|
| apptest_args = apptest_dict.get("test-args", [])
|
|
|