Chromium Code Reviews| Index: tools/safari_factory_reset.py |
| diff --git a/tools/test.py b/tools/safari_factory_reset.py |
| similarity index 90% |
| copy from tools/test.py |
| copy to tools/safari_factory_reset.py |
| index 9a32fa597bf68faeae573e8cf4e4210aeff5a12f..eb44b6f01bb470c8d17d4f031780cf10c23589e2 100755 |
| --- a/tools/test.py |
| +++ b/tools/safari_factory_reset.py |
| @@ -14,7 +14,7 @@ import utils |
| def Main(): |
| args = sys.argv[1:] |
| tools_dir = os.path.dirname(os.path.realpath(__file__)) |
| - dart_script_name = 'test.dart' |
| + dart_script_name = os.path.join('testing', 'dart', 'reset_safari.dart'); |
| dart_test_script = string.join([tools_dir, dart_script_name], os.sep) |
|
Bill Hesse
2016/04/25 08:20:18
I would join tools_dir in the os.path.join in the
ahe
2016/05/24 08:44:42
Done.
|
| command = [utils.CheckedInSdkExecutable(), |
| '--checked', dart_test_script] + args |