aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/87 private include/stlib/compiler.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-11-02 19:23:18 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2020-11-02 19:23:18 +0200
commitdeb2b3e6e63520fad4843f81419b42238a886afe (patch)
tree15dedfab78da4ad20ce272e65d7a7876ae717181 /test cases/common/87 private include/stlib/compiler.py
parentff50f724bbf49739abbee9cbb4c8e6200849738f (diff)
downloadmeson-dircondense2.zip
meson-dircondense2.tar.gz
meson-dircondense2.tar.bz2
Condense test directory names again.dircondense2
Diffstat (limited to 'test cases/common/87 private include/stlib/compiler.py')
-rwxr-xr-xtest cases/common/87 private include/stlib/compiler.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/test cases/common/87 private include/stlib/compiler.py b/test cases/common/87 private include/stlib/compiler.py
new file mode 100755
index 0000000..c8597dd
--- /dev/null
+++ b/test cases/common/87 private include/stlib/compiler.py
@@ -0,0 +1,32 @@
+#!/usr/bin/env python3
+
+import sys, os
+
+assert(len(sys.argv) == 3)
+
+h_templ = '''#pragma once
+unsigned int %s(void);
+'''
+
+c_templ = '''#include"%s.h"
+
+unsigned int %s(void) {
+ return 0;
+}
+'''
+
+ifile = sys.argv[1]
+outdir = sys.argv[2]
+
+base = os.path.splitext(os.path.split(ifile)[-1])[0]
+
+cfile = os.path.join(outdir, base + '.c')
+hfile = os.path.join(outdir, base + '.h')
+
+c_code = c_templ % (base, base)
+h_code = h_templ % base
+
+with open(cfile, 'w') as f:
+ f.write(c_code)
+with open(hfile, 'w') as f:
+ f.write(h_code)