aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/export.py
blob: 7f4e66f29b88ff5b9b8b017512a9a8f74dbb34d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python2

from __future__ import division
from __future__ import print_function

with open("../icebox/iceboxdb.py", "w") as f:
    for i in [ "database_io", "database_logic", "database_ramb", "database_ramt", "database_ramb_8k", "database_ramt_8k" ]:
        print('%s_txt = """' % i, file=f)
        with open("%s.txt" % i, "r") as fi:
            for line in fi:
                print(line, end="", file=f)
        print('"""', file=f)