diff options
Diffstat (limited to 'meson/test cases/common/50 custom target chain/my_compiler.py')
-rwxr-xr-x | meson/test cases/common/50 custom target chain/my_compiler.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meson/test cases/common/50 custom target chain/my_compiler.py b/meson/test cases/common/50 custom target chain/my_compiler.py new file mode 100755 index 000000000..d99029bcc --- /dev/null +++ b/meson/test cases/common/50 custom target chain/my_compiler.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 + +import sys + +if __name__ == '__main__': + if len(sys.argv) != 3: + print(sys.argv[0], 'input_file output_file') + sys.exit(1) + with open(sys.argv[1]) as f: + ifile = f.read() + if ifile != 'This is a text only input file.\n': + print('Malformed input') + sys.exit(1) + with open(sys.argv[2], 'w') as ofile: + ofile.write('This is a binary output file.\n') |