Rakesh Pandit

Results 2 issues of Rakesh Pandit

I always have a `def test_run(self)`: line added to demo file to prevent SimulateForSyntheticWorkload from running as I selectively run other workloads. Seems like a typo. Below is the diff....

Following code: ``` def parse_bitmaps(line): mo = re.search(r'Block bitmap at (\S+) .*, Inode bitmap at (\S+) .*', line) return {'block-bitmap': convert_to_range(mo.group(1)), 'inode-bitmap': convert_to_range(mo.group(2))} ``` breaks with: ``` File "pyreuse/sysutils/dumpe2fsparser.py", line...