Chromium Code Reviews| Index: test/actions-args-change/src/write_file.py |
| diff --git a/test/actions-args-change/src/write_file.py b/test/actions-args-change/src/write_file.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..041e67cf7eeb1c033a92bb4fac1e191305259805 |
| --- /dev/null |
| +++ b/test/actions-args-change/src/write_file.py |
| @@ -0,0 +1,11 @@ |
| +#!/usr/bin/env python |
| + |
| +# Copyright (c) 2012 Google Inc. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import sys |
| + |
| +f = open(sys.argv[1], 'w') |
| +f.write(sys.argv[2]) |
| +f.close() |