summaryrefslogtreecommitdiffstats
path: root/test cases/common/51 run target/converter.py
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/51 run target/converter.py')
-rw-r--r--test cases/common/51 run target/converter.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/common/51 run target/converter.py b/test cases/common/51 run target/converter.py
new file mode 100644
index 0000000..8dd31fe
--- /dev/null
+++ b/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())