~package-import/ubuntu/lucid/apport/defunct

« back to all changes in this revision

Viewing changes to test/hooks

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-15 18:02:59 UTC
  • mfrom: (148.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090715180259-90x8tw361g9y2fun
Tags: 1.6-0ubuntu1
* New upstream release:
  - Add support for kernel crashes, thanks to Michael Vogt!
  - apport/ui.py, run_crash(): Do not re-collect information if we already
    have a Dependencies field. This happens when calling apport on an already
    pre-processed .crash file with -c. (LP: #394497)
  - apport/hookutils.py, pci_devices(): Deliver all matching devices, not
    just the last one. (LP: #398906)
  - hookutils.py, _get_module_license(): Return "invalid" if modinfo fails,
    so that they do not count as "free". (LP: #341720)
  - packaging-apt-dpkg.py: Support additional custom native origins in
    /etc/apport/native-origins.d/ . (LP: #386052)
  - packaging-apt-dpkg.py: Drop PPA origin hack, launchpad behaves properly
    now
  - apport-gtk: Avoid focus stealing when being called without arguments (i.
    e. auto-launched). LP: #396243)
  - apport-kde: Use standard gettext again
  - Fix handling of PC lacking disassembly due to invalid memory location.
* debian/local/apport-collect: Tag bugs with "apport-collected" on success.
  (LP: #391392)

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
        r.load(open(reps[0]))
128
128
 
129
129
        self.assertEqual(set(r.keys()), set(['Date', 'Package', 'ProblemType',
130
 
            'VmCore', 'VmCoreLog']))
 
130
            'VmCore', 'VmCoreLog', 'Uname', 'Architecture', 'DistroRelease']))
131
131
        self.assertEqual(r['ProblemType'], 'KernelCrash')
132
132
        self.assertEqual(r['VmCoreLog'], 'vmcore successfully dumped')
133
133
        self.assertEqual(r['VmCore'], '\x01' * 100)