diff options
Diffstat (limited to 'test cases/common/128 build by default targets in tests/write_file.py')
-rw-r--r-- | test cases/common/128 build by default targets in tests/write_file.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/common/128 build by default targets in tests/write_file.py b/test cases/common/128 build by default targets in tests/write_file.py new file mode 100644 index 0000000..ff9c224 --- /dev/null +++ b/test cases/common/128 build by default targets in tests/write_file.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +import sys + +with open(sys.argv[1], 'w') as f: + f.write('Test') |