Skip to content

Commit

Permalink
tests: signals: Don't test abrt/segv (should exit), but fpe/bus
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKagstrom committed Nov 9, 2016
1 parent 7557bf8 commit 9d93d2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/tools/compiled.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,11 @@ def doTest(self):
dom = self.cmpOne("quit")
assert parse_cobertura.hitsPerLine(dom, "test-signals.c", 24) == 1

dom = self.cmpOne("abrt")
assert parse_cobertura.hitsPerLine(dom, "test-signals.c", 39) == 1
dom = self.cmpOne("bus")
assert parse_cobertura.hitsPerLine(dom, "test-signals.c", 44) == 1

dom = self.cmpOne("segv")
assert parse_cobertura.hitsPerLine(dom, "test-signals.c", 64) == 1
dom = self.cmpOne("fpe")
assert parse_cobertura.hitsPerLine(dom, "test-signals.c", 49) == 1

dom = self.cmpOne("term")
assert parse_cobertura.hitsPerLine(dom, "test-signals.c", 84) == 1
Expand Down

0 comments on commit 9d93d2b

Please sign in to comment.