| Index: test/dependencies/adso/write_args.py
|
| diff --git a/test/hard_dependency/src/emit.py b/test/dependencies/adso/write_args.py
|
| similarity index 67%
|
| copy from test/hard_dependency/src/emit.py
|
| copy to test/dependencies/adso/write_args.py
|
| index 2df74b79a12c561129f397c7b676378dbb96a6ba..cc87cf5192191d3419abada058d46851bd1d46bf 100755
|
| --- a/test/hard_dependency/src/emit.py
|
| +++ b/test/dependencies/adso/write_args.py
|
| @@ -1,11 +1,11 @@
|
| #!/usr/bin/env python
|
|
|
| -# Copyright (c) 2011 Google Inc. All rights reserved.
|
| +# Copyright 2015 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], 'wb')
|
| -f.write('/* Hello World */\n')
|
| +f.write(' '.join(sys.argv[2:]))
|
| f.close()
|
|
|