Changeset 480724a65f12026e6ae132d6c3b259ef2198a116
- Timestamp:
- 02/21/11 17:15:40
(2 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1298308540 +0000
- git-parent:
[ec0f79b5ee03bd254353c5cb634373649f79ebc2]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1298308540 +0000
- Message:
gcc 4.4 (linux) writes out its assertions differently than 4.2 (on mac)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8938add |
r480724a |
|
| 63 | 63 | $fh = get_noit_log(); |
|---|
| 64 | 64 | while(<$fh>) { |
|---|
| 65 | | if(/Assertion failed:.*check->flags & NP_RUNNING.*test_abort/) { |
|---|
| | 65 | if(/Assertion/ && /check->flags & (0x00000001|NP_RUNNING)/ && |
|---|
| | 66 | /test_abort/) { |
|---|
| 66 | 67 | $fh->close; |
|---|
| 67 | 68 | ok(1, "$prefix: found assertion"); |
|---|
| … | … | |
| 132 | 133 | $fh = get_noit_log(); |
|---|
| 133 | 134 | while(<$fh>) { |
|---|
| 134 | | if(/Assertion failed:.*check->flags & NP_RUNNING.*test_abort/) { |
|---|
| | 135 | if(/Assertion/ && /check->flags & (0x00000001|NP_RUNNING)/ && |
|---|
| | 136 | /test_abort/) { |
|---|
| 135 | 137 | $fh->close; |
|---|
| 136 | 138 | ok(1, "$prefix: found assertion"); |
|---|