+ Version 0.11 (??)
- - Fixed some problems with running tests
+ - Fixed some problems with running tests
+ - Issue #2: made all examples run (and test/run_examples_test.py pass)
+ on Windows.
+ Version 0.10 - Initial public release (06.01.2012)
def process_file(filename):
print('Processing file:', filename)
- with open(filename) as f:
+ with open(filename, 'rb') as f:
elffile = ELFFile(f)
if not elffile.has_dwarf_info():
def process_file(filename):
print('Processing file:', filename)
- with open(filename) as f:
+ with open(filename, 'rb') as f:
elffile = ELFFile(f)
if not elffile.has_dwarf_info():
def process_file(filename):
print('Processing file:', filename)
- with open(filename) as f:
+ with open(filename, 'rb') as f:
elffile = ELFFile(f)
if not elffile.has_dwarf_info():
def process_file(filename):
print('Processing file:', filename)
- with open(filename) as f:
+ with open(filename, 'rb') as f:
section_info_lowlevel(f)
f.seek(0)
section_info_highlevel(f)
def process_file(filename):
print('Processing file:', filename)
- with open(filename) as f:
+ with open(filename, 'rb') as f:
elffile = ELFFile(f)
# Read the .rela.dyn section from the file, by explicitly asking
def process_file(filename):
print('In file:', filename)
- with open(filename) as f:
+ with open(filename, 'rb') as f:
elffile = ELFFile(f)
for section in elffile.iter_sections():
def process_file(filename):
- with open(filename) as f:
+ with open(filename, 'rb') as f:
elffile = ELFFile(f)
# elfclass is a public attribute of ELFFile, read from its header
print('%s: elfclass is %s' % (filename, elffile.elfclass))
def process_file(filename):
print('Processing file:', filename)
- with open(filename) as f:
+ with open(filename, 'rb') as f:
elffile = ELFFile(f)
if not elffile.has_dwarf_info():
testlog.info('.......ERROR - example returned error code %s' % rc)
return False
- if example_out == ref_str:
+ # Comparison is done as lists of lines, to avoid EOL problems
+ if example_out.split() == ref_str.split():
return True
else:
testlog.info('.......FAIL comparison')