aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/51 run target/converter.py
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/common/51 run target/converter.py')
-rw-r--r--meson/test cases/common/51 run target/converter.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson/test cases/common/51 run target/converter.py b/meson/test cases/common/51 run target/converter.py
new file mode 100644
index 000000000..8dd31fe2f
--- /dev/null
+++ b/meson/test cases/common/51 run target/converter.py
@@ -0,0 +1,6 @@
+#!/usr/bin/env python3
+
+import sys
+
+with open(sys.argv[1], 'rb') as ifile, open(sys.argv[2], 'wb') as ofile:
+ ofile.write(ifile.read())