sh1nu11bi / sulley

Automatically exported from code.google.com/p/sulley
GNU General Public License v2.0
0 stars 0 forks source link

signal.pause() on Windows in fuzz function #11

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Complete a fuzzer script on Windows
2. Observe error
3.

What is the expected output? What do you see instead?

[11:25.08] netmon captured 0 bytes for test case #18655
[11:25.08] all possible mutations for current fuzz node exhausted
Traceback (most recent call last):
  File "http.py", line 75, in <module>
    sess.fuzz()
  File "C:\dev\sulley\sulley\sessions.py", line 501, in fuzz
    self.fuzz(self.fuzz_node, path)
  File "C:\dev\sulley\sulley\sessions.py", line 514, in fuzz
    signal.pause()
AttributeError: 'module' object has no attribute 'pause'

No support for signal.pause() on Windows.

What version of the product are you using? On what operating system?
Current SVN as of 1/14/2009, Windows XP SP3.

Please provide any additional information below.

Original issue reported on code.google.com by jlw...@gmail.com on 15 Jan 2009 at 4:44

GoogleCodeExporter commented 9 years ago
my awesome patch for this:
comment out lines 513-515 in sessions.py

Original comment by koka...@gmail.com on 9 Feb 2010 at 8:19