Skip to content

Commit

Permalink
dont use CPU cycles for no TU
Browse files Browse the repository at this point in the history
  • Loading branch information
trolldbois committed Oct 29, 2015
1 parent 3b3ca89 commit 2c52b6c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/haystack/reverse/heuristics/test_reversers.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,7 @@ def test_reverse_heap(self):
return


@unittest.skip
class TestReverseZeus(unittest.TestCase):

@classmethod
Expand Down Expand Up @@ -540,6 +541,7 @@ def test_reverse_heap(self):
pass


@unittest.skip
class TestReversers(SrcTests):

def setUp(self):
Expand Down Expand Up @@ -757,10 +759,10 @@ def test_otherlink(self):

if __name__ == '__main__':
logging.basicConfig(level=logging.INFO)
logging.getLogger("reversers").setLevel(logging.DEBUG)
logging.getLogger("signature").setLevel(logging.DEBUG)
# logging.getLogger("reversers").setLevel(logging.DEBUG)
# logging.getLogger("signature").setLevel(logging.DEBUG)
# logging.getLogger("test_reversers").setLevel(logging.DEBUG)
# logging.getLogger("structure").setLevel(logging.DEBUG)
logging.getLogger("dsa").setLevel(logging.DEBUG)
# logging.getLogger("dsa").setLevel(logging.DEBUG)
# logging.getLogger("winxpheap").setLevel(logging.DEBUG)
unittest.main(verbosity=2)

0 comments on commit 2c52b6c

Please sign in to comment.