| Index: scripts/slave/runisolatedtest.py
|
| diff --git a/scripts/slave/runisolatedtest.py b/scripts/slave/runisolatedtest.py
|
| index cf199f2ab1419dfec2c13fcc44c8b852a3617c30..7d96a1e3ba8fa84876f42ea4c3e94fb3a964445d 100755
|
| --- a/scripts/slave/runisolatedtest.py
|
| +++ b/scripts/slave/runisolatedtest.py
|
| @@ -104,7 +104,7 @@ def sanitize_isolated_file(isolated_file, build_dir_basename):
|
| isolated_data = json.load(f)
|
|
|
| # 1. check version
|
| - if isolated_data['version'] != '1.0':
|
| + if isolated_data['version'].split('.', 1)[0] != '1':
|
| logging.error('Unexpected isolate version %s', isolated_data['version'])
|
| return 1
|
|
|
|
|