getting-started

Differences between revisions 1 and 2
Revision 1 as of 2007-02-12 19:05:33
Size: 3307
Editor: 81
Comment: created
Revision 2 as of 2007-02-12 19:36:32
Size: 3286
Editor: 81
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
== On a Feisty Fawn system == === On a Feisty Fawn system ===
Line 9: Line 9:
run {{{
sudo apt-get install bughelper}}}
{{{sudo apt-get install bughelper
}}}
Line 12: Line 12:
== On other systems == === On other systems ===
Line 22: Line 22:
= Initial configuration = === Initial configuration ===
Line 24: Line 24:
When you run {{{bughelper}}} for the first time it will create a ~/.bughelper/ directory and a ~/.bughelper/config file. It will also check out a copy of the latest shared clue files from the bughelper project on Launchpad. You are now ready to search for bugs!
When you run {{{bughelper}}} for the first time it will create a ~/.bughelper/ directory and a ~/.bughelper/config file. It will also check out a copy of the latest shared clue files from the bughelper project on Launchpad.
Line 68: Line 67:
Once a clue file has been created, bughelper will include the information it contains in future searches. The above example represents just a simple search string, but you can get more targeted searches by adding more conditions to your clue files. Read [:BugHelper/Dev/ClueFiles:Dev/ClueFiles] for further information on file structure and sharing the search data with others. Once a clue file has been created, bughelper will include the information it contains in future searches. The above example represents just a simple search string, but you can get more targeted searches by adding more conditions to your clue files. Read [:BugHelper/doc/WritingClueFiles:doc/WritingClueFiles] for further information on file structure and sharing the search data with others.

Installing

On a Feisty Fawn system

It's packaged in universe, so installing is easy:

{{{sudo apt-get install bughelper }}}

On other systems

These instructions assume that you have a [https://launchpad.net launchpad] account and that you have bzr [http://doc.bazaar-vcs.org/bzr.dev/tutorial.htm installed and configured].

Get the bughelper source from launchpad:

bzr checkout sftp://YOUR-LAUNCHPAD-ID@bazaar.launchpad.net/~bugsquad/bughelper/bughelper.main

This is also the best option if you want to participate in bughelper development, or just test the bleeding edge.

Initial configuration

When you run bughelper for the first time it will create a ~/.bughelper/ directory and a ~/.bughelper/config file. It will also check out a copy of the latest shared clue files from the bughelper project on Launchpad.

A simple search

When you've downloaded the shared clue files you are ready to start searching for bugs fitting certain pre-defined patterns.

Try it first with a small package:

{{{$ bughelper -p vino }}}

The result should be a listing of vino bugs with their status and a suggestion of how they may be related to other known bugs. This type of search, looking for known patterns in open bugs, can be useful in finding new instances of known duplicates.

However, sometimes you may be approaching the problem form the other direction. You are working with a given bug and you want to look for similar bugs, either pen or closed. In that case you'll want to define your own search terms:

{{{bughelper -T vino "crash" "A CRASHER BUG" -p vino }}}

Where the first entry in quotes is the string you want to search for and the second is the information that bughelper presents on finding it. By changing the search string you can explore the bug reports filed against a given package for common traits. Note that on larger packages each search will take some time.

Clue files

Once you have found a useful search pattern, you'll probably want to store it for future use, and for that we use clue files. To store the search you have just completed, use bugxml:

{{{bugxml -a vino "crash" "A CRASHER BUG" }}}

This will create a new XML file with the simple clue defined by the search string and text output, like:

<?xml version="1.0"?>
<clues version="0.1">
  <clue>
    <contains>
      <op>crash</op>
    </contains>
    <info>A CRASHER BUG</info>
  </clue>
</clues>

Note: creating clues with bugxml requires that you have added a local package directory to your ~/.bughelper/config file.

Once a clue file has been created, bughelper will include the information it contains in future searches. The above example represents just a simple search string, but you can get more targeted searches by adding more conditions to your clue files. Read [:BugHelper/doc/WritingClueFiles:doc/WritingClueFiles] for further information on file structure and sharing the search data with others.


Go back to [:BugHelper/Dev].BR CategoryBugSquad

BugHelper/doc/getting-started (last edited 2010-01-25 21:19:35 by 39)