Changeset 8938addd5f83abced30639d76ba3ec6c59e68861
- Timestamp:
- 02/21/11 15:23:56
(2 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1298301836 +0000
- git-parent:
[e06e00e9272d5e12448881e0b1331671143eed34]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1298301836 +0000
- Message:
make the pattern match output (Sun Studio produces slightly different assertions)... VERIFYHOST needs to be 1 or we explode on Solaris.. not sure why
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r09ecd28 |
r8938add |
|
| 63 | 63 | $fh = get_noit_log(); |
|---|
| 64 | 64 | while(<$fh>) { |
|---|
| 65 | | if(/Assertion failed:.*check->flags & NP_RUNNING.*test_abort_initiate/) { |
|---|
| | 65 | if(/Assertion failed:.*check->flags & NP_RUNNING.*test_abort/) { |
|---|
| 66 | 66 | $fh->close; |
|---|
| 67 | 67 | ok(1, "$prefix: found assertion"); |
|---|
| … | … | |
| 132 | 132 | $fh = get_noit_log(); |
|---|
| 133 | 133 | while(<$fh>) { |
|---|
| 134 | | if(/Assertion failed:.*check->flags & NP_RUNNING.*test_abort_initiate/) { |
|---|
| | 134 | if(/Assertion failed:.*check->flags & NP_RUNNING.*test_abort/) { |
|---|
| 135 | 135 | $fh->close; |
|---|
| 136 | 136 | ok(1, "$prefix: found assertion"); |
|---|
| r629726b |
r8938add |
|
| 18 | 18 | my $curl = WWW::Curl::Easy->new(); |
|---|
| 19 | 19 | $curl->setopt(CURLOPT_SSL_VERIFYPEER, 0); |
|---|
| | 20 | $curl->setopt(CURLOPT_SSL_VERIFYHOST, 1); |
|---|
| 20 | 21 | $curl->setopt(CURLOPT_CAINFO, $options->{cainfo}); |
|---|
| 21 | 22 | $curl->setopt(CURLOPT_SSLKEY, $options->{key}); |
|---|