mirror of
https://github.com/vivisect/vivisect
synced 2026-06-08 18:04:23 +00:00
6f069e7811
* Still WIP. need to check on perf_update. Core concept for splitting a jump table on encountering another pointer to somewhere inside it is there. need to del codeblock refs on differing functions and add tests * vivbins isn't a thing anymore * handle case of differing functions for two consecutive jump tables * More tests for vivgraph and add comment to jump cases to tell us what other cases fall through to this one * test cleanup * Fix slight bug and add tests for vdir * moar long path tests * More tests * making things purty * Spelling * cut out some of the aesthetic changes for now * Carving out bugfix to new branch * Remove refs
13 lines
167 B
Python
13 lines
167 B
Python
import unittest
|
|
|
|
import PE
|
|
|
|
|
|
class PEResourceTests(unittest.TestCase):
|
|
|
|
def test_pe_vsversion(self):
|
|
pass
|
|
|
|
def test_pe_getresbytes(self):
|
|
pass
|