forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmingw_convert_ctest.py
190 lines (155 loc) · 5.12 KB
/
mingw_convert_ctest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#!/usr/bin/env python
#
# Mingw_x_testfile - convert paths in CTestTestfile.cmake so they work
# under Windows(TM).
#
# Usage:
#
# In Windows(TM) open a console, cd to the test suite as built by
# openscad/scripts/release-common.sh tests, then run this script.
#
# C:
# cd C:\temp\OpenSCAD-Tests-2012.03.40
# C:\python27\python.exe mingw_convert_ctest.py
# This will overwrite CTestTestfile.cmake and CTestCustom.cmake.
# If all goes well, 'ctest' can then be run.
#
#
# C:\python27\python.exe mingw_convert_ctest.py --debug
# This will provide extra debug info
#
# C:\python27\python.exe mingw_convert_ctest.py --undo
# This will restore original CTest files from backup
#
# This is a primitive version - it assumes the locations for several files,
# including ImageMagick, Python, and several other programs.
#
# Note that under 'cmake', Windows(TM) paths use / instead of \ as a
# folder separator.
# mingw_cross_info.py is created by scripts/release-common.sh during build
# of the regression test package. it contains info regarding paths in
# CTestTestfiles.cmake that we need to modify
import mingw_cross_info
import sys,os,string
from _winreg import *
_debug=False
_undo=False
def debug(*args):
global _debug
if _debug:
print 'mingw_x_testfile:',
for arg in args: print arg,
print
thisfile_abspath=os.path.abspath(__file__)
linbase=mingw_cross_info.linux_abs_basedir
winbase=os.path.dirname(os.path.dirname(thisfile_abspath))
linbuild=mingw_cross_info.linux_abs_builddir
winbuild=winbase+'/'+mingw_cross_info.bindir
lintct=linbase+'/tests/test_cmdline_tool.py'
wintct=winbase+'/tests/test_cmdline_tool.py'
linpy=mingw_cross_info.linux_python #'/usr/bin/python'
# FIXME - find python
winpy='c:/python27/python.exe'
linosng=linbuild+'/openscad_nogui.exe'
winosng=winbuild+'/openscad_nogui.exe'
linconv=mingw_cross_info.linux_convert #'/usr/bin/convert'
# Find imagemagick's convert.exe
list64=[]
list32=[]
imbase=''
winconv=''
try:
registry = ConnectRegistry(None,HKEY_LOCAL_MACHINE)
regkey = OpenKey(registry, r"SOFTWARE\ImageMagick\Current")
imbinpath = QueryValueEx(regkey, 'BinPath')[0]
except Exception as e:
print "Can't find imagemagick using registry...",
print str(type(e))+str(e)
pass
print 'Searching for ImageMagick in Program folders'
for basedir in 'C:/Program Files','C:/Program Files (x86)':
if os.path.isdir(basedir):
pflist=os.listdir(basedir)
for subdir in pflist:
if 'ImageMagick' in subdir:
imbase = basedir+'/'+subdir
winconv = imbase+'/convert.exe'
if os.path.isfile(winconv):
break
if winconv != '': break
if winconv=='':
print 'error, cant find convert.exe'
linoslib='OPENSCADPATH='+linbase+'/tests/../libraries'
winoslib='OPENSCADPATH='+winbase+'/tests/../libraries'
lintestdata=linbase+'/tests/../testdata'
wintestdata=winbase+'/tests/../testdata'
linexamples=linbase+'/tests/../examples'
winexamples=winbase+'/tests/../examples'
if '--debug' in string.join(sys.argv): _debug=True
if '--undo' in string.join(sys.argv): _undo=True
if True:
print thisfile_abspath
print 'linbase',linbase
print 'winbase',winbase
print 'linbuild',linbuild
print 'winbuild',winbuild
print 'lintct',lintct
print 'wintct',wintct
print 'linpy',linpy
print 'winpy',winpy
print 'linosng',linosng
print 'winosng',winosng
print 'linconv',linconv
print 'winconv',winconv
print 'linoslib',linoslib
print 'winoslib',winoslib
print 'lintestdata',lintestdata
print 'wintestdata',wintestdata
print 'linexamples',linexamples
print 'winexamples',winexamples
def processfile(infilename):
backup_filename = infilename+'.backup'
if _undo:
open(infilename,'wb').write(open(backup_filename,'rb').read())
print 'restored ',infilename,'from backup'
return
open(backup_filename,'wb').write(open(infilename,'rb').read())
debug ('wrote backup of ',infilename,' to ',backup_filename)
outfilename = infilename.replace('.cmake','.win.cmake')
fin=open(infilename,'rb')
lines=fin.readlines()
fout=open(outfilename,'wb')
fout.write('#'+os.linesep)
fout.write('# modified by mingw_x_testfile.py'+os.linesep)
fout.write('#'+os.linesep)
debug('inputname',infilename)
debug('outputname',outfilename)
for line in lines:
debug('input:',line)
# special for CTestCustom.template + ctest bugs w arguments
line=line.replace('--builddir='+linbuild,'')
line=line.replace(linbuild,winbuild)
line=line.replace(lintct,wintct)
line=line.replace(linpy,winpy)
line=line.replace(linosng,winosng)
line=line.replace(linconv,winconv)
line=line.replace(linoslib,winoslib)
line=line.replace(lintestdata,wintestdata)
line=line.replace(linexamples,winexamples)
line=line.replace(linbase,winbase)
line=line.replace('\\"','__ESCAPE_WIN_QUOTE_MECHANISM__')
line=line.replace('\\','/')
line=line.replace('__ESCAPE_WIN_QUOTE_MECHANISM__','\\"')
debug('output:',line)
fout.write(line)
print 'backed up',infilename, 'to', backup_filename
print 'processed',infilename, 'to', outfilename
fin.close()
fout.close()
open(infilename,'wb').write(open(outfilename,'rb').read())
print 'new version of',infilename,'written'
def run():
processfile('CTestTestfile.cmake')
processfile('CTestCustom.cmake')
if __name__=='__main__':
run()