4 # Compare the results of native and cross-compiled configure tests
10 exceptions
= ['BUILD_DIRECTORY', 'CROSS_COMPILE', 'CROSS_ANSWERS',
11 'CROSS_EXECUTE', 'SELFTEST_PREFIX', 'LIBSOCKET_WRAPPER_SO_PATH',
19 for fname
in sys
.argv
[1:]:
23 if len(line
.split('=', 1)) == 2:
24 key
= line
.split('=', 1)[0].strip()
30 diff
= list(difflib
.unified_diff(base_lines
,lines
,base_fname
,fname
))
32 print 'configuration files %s and %s do not match' % (base_fname
, fname
)