-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1197 from zonemaster/develop
Merge develop branch into master (Backend)
- Loading branch information
Showing
15 changed files
with
394 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package Zonemaster::Backend; | ||
|
||
our $VERSION = '11.2.0'; | ||
our $VERSION = '11.3.0'; | ||
|
||
use strict; | ||
use warnings; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!perl | ||
use v5.14.2; | ||
use strict; | ||
use warnings; | ||
use utf8; | ||
use Test::More tests => 2; | ||
use Test::NoWarnings; | ||
|
||
use File::Basename qw( dirname ); | ||
|
||
chdir dirname( dirname( __FILE__ ) ) or BAIL_OUT( "chdir: $!" ); | ||
|
||
my $makebin = 'make'; | ||
|
||
sub make { | ||
my @make_args = @_; | ||
|
||
undef $ENV{MAKEFLAGS}; | ||
|
||
my $command = join( ' ', $makebin, '-s', @make_args ); | ||
my $output = `$command 2>&1`; | ||
|
||
if ( $? == -1 ) { | ||
BAIL_OUT( "failed to execute: $!" ); | ||
} | ||
elsif ( $? & 127 ) { | ||
BAIL_OUT( "child died with signal %d, %s coredump\n", ( $? & 127 ), ( $? & 128 ) ? 'with' : 'without' ); | ||
} | ||
|
||
return $output, $? >> 8; | ||
} | ||
|
||
subtest "distcheck" => sub { | ||
my ( $output, $status ) = make "distcheck"; | ||
is $status, 0, $makebin . ' distcheck exits with value 0'; | ||
is $output, "", $makebin . ' distcheck gives empty output'; | ||
}; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"no_network" : false, | ||
"logfilter": { | ||
"BASIC":{ | ||
"IPV6_DISABLED" : [ | ||
{ | ||
"when": { | ||
"rrtype": [ "SOA", "NS" ] | ||
}, | ||
"set": "INFO" | ||
} | ||
] | ||
} | ||
}, | ||
"test_cases": [ | ||
"address01", | ||
"address02", | ||
"address03", | ||
"basic00", | ||
"basic01", | ||
"basic02", | ||
"basic03", | ||
"connectivity01", | ||
"connectivity02", | ||
"connectivity03", | ||
"consistency01", | ||
"consistency02", | ||
"consistency03", | ||
"consistency04", | ||
"consistency05", | ||
"consistency06", | ||
"dnssec01", | ||
"dnssec02", | ||
"dnssec03", | ||
"dnssec04", | ||
"dnssec05", | ||
"dnssec07", | ||
"dnssec06", | ||
"dnssec08", | ||
"dnssec09", | ||
"dnssec10", | ||
"dnssec11", | ||
"dnssec13", | ||
"dnssec14", | ||
"dnssec15", | ||
"dnssec16", | ||
"dnssec17", | ||
"dnssec18", | ||
"delegation01", | ||
"delegation02", | ||
"delegation03", | ||
"delegation04", | ||
"delegation05", | ||
"delegation06", | ||
"delegation07", | ||
"nameserver01", | ||
"nameserver02", | ||
"nameserver04", | ||
"nameserver05", | ||
"nameserver06", | ||
"nameserver07", | ||
"nameserver10", | ||
"nameserver11", | ||
"nameserver12", | ||
"nameserver13", | ||
"syntax01", | ||
"syntax02", | ||
"syntax03", | ||
"syntax04", | ||
"syntax05", | ||
"syntax06", | ||
"syntax07", | ||
"syntax08", | ||
"zone01", | ||
"zone02", | ||
"zone03", | ||
"zone04", | ||
"zone05", | ||
"zone06", | ||
"zone07", | ||
"zone08", | ||
"zone09", | ||
"zone10" | ||
] | ||
} |
Oops, something went wrong.