Difference between revisions of "How do I create a bug report"

From Lazarus wiki
Jump to navigationJump to search
m (Reverted edits by Selayo (talk) to last revision by E-ric)
Line 5: Line 5:
 
== Code compilation errors ==
 
== Code compilation errors ==
 
If you have errors when compiling code from latest SVN revision, please contact a proper [http://freepascal.org/maillist.var FPC mailing list] or [http://lists.lazarus-ide.org/listinfo Lazarus mailing list] or better join <b>#fpc</b> or <b>#lazarus-ide</b> IRC channel on irc.freenode.net. Then the problem should be solved more promptly.
 
If you have errors when compiling code from latest SVN revision, please contact a proper [http://freepascal.org/maillist.var FPC mailing list] or [http://lists.lazarus-ide.org/listinfo Lazarus mailing list] or better join <b>#fpc</b> or <b>#lazarus-ide</b> IRC channel on irc.freenode.net. Then the problem should be solved more promptly.
 
var
 
  funct:Variant;
 
begin
 
  funct:=sapRfc.Add('RFC_READ_TABLE');          //ok
 
  funct.Exports('QUERY_TABLE').Value:='VBAP';  //error, but delphi is ok
 
  ...
 
end;
 
Unit2.pas(497,9) Fatal: Syntax error, "identifier" expected but "EXPORTS" found
 
  
 
== Check if the bug is not already reported ==
 
== Check if the bug is not already reported ==
Line 44: Line 35:
 
* If you have a possible solution, you can add a patch - see [[Creating A Patch]], which will speed up the process.
 
* If you have a possible solution, you can add a patch - see [[Creating A Patch]], which will speed up the process.
 
* You can boost fixing the bug by submitting a bounty, see [[Bounties]].
 
* You can boost fixing the bug by submitting a bounty, see [[Bounties]].
 
var v1:qword;
 
procedure _test;
 
begin
 
  asm
 
  mov rax,v1
 
  mov rcx,v1    //bug1
 
  jmp @test
 
  lea rax,@test  //bug2
 
  nop
 
  @test:
 
  end;
 
//000000010002B860 | 55                                    | push rbp                            |;
 
//000000010002B861 | 48 89 E5                              | mov rbp,rsp                          |;
 
//000000010002B864 | 48 A1 70 9B 24 00 01 00 00 00        | mov rax,qword ptr ds:[100249B70]    | ok;
 
//000000010002B86E | 48 8B 0C 25 70 9B 24 00              | mov rcx,qword ptr ds:[249B70]        | bug1 <> ds:[100249B70];
 
//000000010002B876 | EB 09                                | jmp project1.10002B881              | ok;
 
//000000010002B878 | 48 8D 04 25 81 B8 02 00              | lea rax,qword ptr ds:[2B881]        | bug2 <> ds:[10002B881];
 
//000000010002B880 | 90                                    | nop                                  |;
 
//000000010002B881 | 48 8D 65 00                          | lea rsp,qword ptr ss:[rbp]          |;
 
//000000010002B885 | 5D                                    | pop rbp                              |;
 
//000000010002B886 | C3                                    | ret                                  |;
 
end;
 
  
 
=== Regression caused by a certain revision ===
 
=== Regression caused by a certain revision ===

Revision as of 19:30, 16 November 2017

Afrikaans (af) Deutsch (de) English (en) français (fr) português (pt) русский (ru)

This document contains some guidelines for using the FPC / Lazarus bug tracker as a reporter. This document is written for FPC / Lazarus users who identify bugs, have recommendations, want to submit patches or find other issues and want to report these to the Lazarus development team.

Code compilation errors

If you have errors when compiling code from latest SVN revision, please contact a proper FPC mailing list or Lazarus mailing list or better join #fpc or #lazarus-ide IRC channel on irc.freenode.net. Then the problem should be solved more promptly.

Check if the bug is not already reported

Use the search field in View Issues. Hint: The searching is not smart: e.g. if you have a problem using TEdit.SelStart, search for "SelStart". If the issue is already reported:

  • reopen it, if the bug report has been resolved or closed - use Reopen Issue button
  • add a note, if you have reproduced this bug in a different situation than reported
  • you can set the system to monitor changes in this bug report - use Monitor Issue button

Note: you need to be logged in to perform these operations, see section #Logging/Creating new account.

Logging in / Creating new account

You need to be logged in to edit or submit bug reports. If you are logged in as guest, you need to log out first (Guests cannot make reports, only watch them). If you already have an account, go to the login page, otherwise create a new account on the sign up page.

What should be submitted via the Bug Tracker?

  • Bugs: If you identify errors, glitches, or other faults in FPC or Lazarus
  • Suggestions: If you have identified a better way to do something
  • Improvements: If you can make something work better

Please note: The Bug Tracker is not designed to field questions. These should be directed toward the Forums [1].

Bug

  • Important fields are the OS and Product fields and the steps to reproduce this issue. If an issue cannot be reproduced by the developers, they cannot start to fix it! Do not forget to mention your specific architecture/configuration (32 or 64 bit, little or big endian if both are possible on your platform, version of your operating system).
  • If possible, please upload a small test application that shows the bug. This will likely speed up a fix.
  • If there is some graphical error, it is useful to upload a (partial) screenshot (in png or jpeg, not bmp format).
  • If it is a crash, try to create a backtrace. See Creating a Backtrace with GDB for more info.
  • You can try to reproduce the bug on as many different platforms as you can - it helps to determine if it is widget specific issue.
  • If you have a possible solution, you can add a patch - see Creating A Patch, which will speed up the process.
  • You can boost fixing the bug by submitting a bounty, see Bounties.

Regression caused by a certain revision

If you can find a revision in trunk that caused a bug, please include also its SVN revision number. The report will usually be assigned to the author of that revision. You can find a quilty revision by a "bisect" process which is a binary search over the revisions. There are tools to help with that:

  • A Git command git bisect. For that you must use git_mirrors or a git svn link. Git is fast in this operation because all the revision history is local and nothing needs to fetched from a server.
  • A Perl script svn-bisect, available in CPAN. It mimics the "git bisect" command but works on SVN data directly.

Suggestion

Explain your idea. A GUI mockup or an example of another tool using the feature can be helpful.

Improvement

  • If you have implemented a new feature in the source code or improved documentation in the XML files, create a patch - see Creating A Patch.
  • If you have improved translation in a language .po file, attach the whole .po file (not a diff).
  • If you have another resource file, for example an icon, attach it to the report.

Attachments

If you add source code or project sample attachments for the bug report (strongly recommended, see Tips on writing bug reports), please compress them using preferably these formats:

  • zip (.zip)
  • gzip (.gz)
  • tar.gzip (.tgz/.tar.gz)

Other formats like 7zip, Bzip and RAR are ok, too. Nowadays tools for them are easily available.

Understanding the Report Status

An issue can have the following states:

  • New: it has entered in the bug tracker, but hasn't been assigned, acknowledged, confirmed or resolved.
  • Acknowledged: the Lazarus team has seen the issue and has set its target, though they have not necessarily verified that the bug is valid
  • Confirmed: a member of the Lazarus team has duplicated the bug or agrees that the feature should be implemented
  • Assigned: the issue has been assigned to a Lazarus developer, who will try to fix/implement it
  • Resolved: the person to whom the issue was assigned thinks the issue can be closed. Then he also sets the resolution, for example fixed or not an issue.
  • Feedback: the reporter should provide feedback to answer any questions posed by the Lazarus team, or to confirm that the issue is fixed satisfactorily.
  • Closed: the reporter tested the fix and agrees with the fix. Periodically resolved issues that have not been closed by the reporter, will be a closed by the bug tracker administrator.

See also