~mwhudson/apport/ignore-new-pycodestyle-warning

« back to all changes in this revision

Viewing changes to test/test_signal_crashes.py

  • Committer: Brian Murray
  • Date: 2017-06-26 21:32:35 UTC
  • Revision ID: brian@canonical.com-20170626213235-fdb8ses7i3hrdz80
test/test_signal_crashes.py: a ulimit of 1M bytes isn't enough to produce a core file anymore so bump it to 10M.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# (core ulimit (bytes), expect core signal, expect core file, expect report)
19
19
core_ulimit_table = [(1, False, False, False),
20
20
                     (1000, True, False, True),
21
 
                     (1000000, True, True, True),
 
21
                     (10000000, True, True, True),
22
22
                     (-1, True, True, True)]
23
23
 
24
24
required_fields = ['ProblemType', 'CoreDump', 'Date', 'ExecutablePath',