The most important rule, though, is please browse the rest of this page before sending a bug report. It is much easier for both of us if we understand what is expected.
Before I can fix an error, I need to understand what the problem is. Try to explain what is wrong and why you think it is wrong. Please try to include sample code that demonstrates the problem. Include a description of what Icarus Verilog does that is wrong, and what you expect should happen, and include the command line flags passed to the compiler to make the error happen. (This last step is often overlooked, and sometimes important.)
Browse and report bugs through the Sorceforge based bug tracking system at this link (http://sourceforge.net/tracker/?group_id=149850).
If the sourceforge tracker is unavailable or if you have suggestions
for improvements, send them to the <geda-dev@seul.org> mailing
list, or directly to me.
The old ivl-bugs reporting system has been abused by spammers to the
point where it is no longer maintainable. The system is still on line
at< http://www.icarus.com/cgi-bin/ivl-bugs
> for browsing old bugs, but please do not submit new bugs by the old system.
So now what sorts of problems might you report? Let's see...
Icarus Verilog internally checks its state while it works, and if it detects something wrong that it cannot recover from, it will abort intentionally. The "assertion failure" message that the program prints in the process of dying is very important. It tells me where in the source the bad thing happened. Include that message in the bug report. If there are no assertion messages, I need to know that as well.
I also need a complete test program that demonstrates the crash. See below.
So, if your program doesn't compile, tell me so. Tell me where the error occurs, and include a complete Perfectly Valid Test Program(tm). You tell me that it fails to compile for you, and I find that it compiles for me, then hooray I fixed it. It can happen, you know. What's on my disk is more recent then the latest snapshot.
If your program does compile, but generates incorrect output, I need to know what it says and what you think it should say. From this I can take your sample program and work on Icarus Verilog until it gets the proper results. For this to work, of course, I first need to know what is wrong with the output. Spell it out, because I've been known to miss the obvious. Compiler writers often get buried in the details of the wrong problem.
In any case, please include not only the sample Verilog program, but the generated netlist file(s) and a clear indication of what went wrong. If it is not clear to me, I will ask for clarification. Be explicit. Again, I have been known to miss the obvious.
Also, include the command line you use to invoke the compiler. For example:
So when you send a test case, ask yourself "Can poor overworked Steve invoke the error without any Verilog other then what is included?" And while we are at it, please place a copyright notice in your test program and include a GPL license statement if you can. Your test program may find its way into the test suite, and the notices will make it all nice and legal. (See COPYRIGHT ISSUES below.)
I prefer context diffs as emitted by diff from GNU diffutils. Human beings can read such things, and they are resilient to changing originals. A good set of flags to diff are ``diff -cNB''. With such diffs, I can look at the changes you are offering and probably tell at a glance that they are plausible. Then I can use patch(1) to apply them. Or I can apply them by hand.
I find replacement files particularly inconvenient. Replacement files do not clearly highlight what they change, and they are particularly difficult to merge with local changes to the file. Please, if your changes are restricted to a single file, it is easy for you to use the diff command on that file, and diffs of this form are infinitely easier for me to accept, approve and apply.
Now that you have the perfect patch, please tell me what this patch is supposed to accomplish, and if appropriate include a test program that demonstrates the efficacy of the patch. (If I have no idea what the patch is for, I will ask for clarification before applying it.) The test program may well find its way into the regression test suite, so include copyright notices.
I must insist that any copyright material submitted for inclusion include the GPL license notice as shown in the rest of the source.
And this of course brings up the issue of copyright status of test programs sent as bug reports. Basically, I presume when sample code is sent as part of a bug report that you are granting me license to redistribute it (properly attributed, of course) in a test suite or other forum. In particular, code that might reveal trade secrets and intellectual property should not be sent to me. If you are reporting a problem you are encountering in such code, try making a contrived example that does the trick. Just realize that I signed no non-disclosure agreements, so am not bound to non-disclosure.
$Id: bugs.html,v 1.10 2006/02/21 22:00:39 steve Exp $