]> Sergey Matveev's repositories - public-inbox.git/blobdiff - xt/solver.t
another step towards git SHA-256 support
[public-inbox.git] / xt / solver.t
index c76e0b0a5fc12e88b61fef813c2ac45851d72016..40a5f81fb0eb21f090aed59a851e3a1e503b7290 100644 (file)
@@ -29,6 +29,7 @@ my $todo = {
                '6aa8857a11/s/?b=protocol.c',
                '96f1c7f/s/', # TODO: b=contrib/completion/git-completion.bash
                'b76f2c0/s/?b=po/zh_CN.po',
+               'c2f3bf071ee90b01f2d629921bb04c4f798f02fa/s/', # tag
        ],
 };
 
@@ -48,9 +49,16 @@ my $client = sub {
 my $nr = 0;
 while (($ibx_name, $urls) = each %$todo) {
        SKIP: {
-               if (!$cfg->lookup_name($ibx_name)) {
+               my $ibx = $cfg->lookup_name($ibx_name);
+               if (!$ibx) {
                        push @gone, $ibx_name;
-                       skip("$ibx_name not configured", scalar(@$urls));
+                       skip(qq{[publicinbox "$ibx_name"] not configured},
+                               scalar(@$urls));
+               }
+               if (!defined($ibx->{coderepo})) {
+                       push @gone, $ibx_name;
+                       skip(qq{publicinbox.$ibx_name.coderepo not configured},
+                               scalar(@$urls));
                }
                test_psgi($app, $client);
                $nr++;