summaryrefslogtreecommitdiffstats
path: root/test cases/common/105 generatorcustom/gen.py
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/105 generatorcustom/gen.py')
-rwxr-xr-xtest cases/common/105 generatorcustom/gen.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/test cases/common/105 generatorcustom/gen.py b/test cases/common/105 generatorcustom/gen.py
new file mode 100755
index 0000000..1464008
--- /dev/null
+++ b/test cases/common/105 generatorcustom/gen.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python3
+
+import sys
+
+ifile = sys.argv[1]
+ofile = sys.argv[2]
+
+with open(ifile) as f:
+ resname = f.readline().strip()
+
+templ = 'const char %s[] = "%s";\n'
+with open(ofile, 'w') as f:
+ f.write(templ % (resname, resname))