Home Quick start All builds News Donations
More
Log In
Light Theme Docs
Workers

SparrowCI Report - gh-melezhik-libbitcoin-raku | [image: melezhik/sparrow:debian]

  • Summary
  • Pipeline YAML
  • Report
BuildID: 2288
Status: FAIL
Image: melezhik/sparrow:debian
Worker status: OK
---
Date: 22.12.2022 @ 23:15
Time elapsed: 338 sec
---
SCM: https://github.com/melezhik/libbitcoin-raku.git
Git sha: 9c75f1f
Git comment: Create sparrow.yaml
image:
  - melezhik/sparrow:debian
tasks:
  -
    name: main
    default: true
    language: Raku
    code: |
      use Text::Table::Simple;
      my @columns = ("Rakudo Version", "Status", "Time", "Linux Dist");
      my @rows;
      my $fail = False;
      for config()<tasks><multi-versions><state><list><> -> $i {
        @rows.push: [ $i<version>, $i<status>,  $i<time>, os() ];
        $fail = True unless $i<status> eq "OK";
      }
      my @table = lol2table(@columns,@rows);
      .say for @table;
      die "some tests failed" if $fail == True;
    depends:
      -
        name: multi-versions
  -
    name: multi-versions
    language: Raku
    config:
      list:
        # - 2022.04
        - 2022.07
        - 2022.12
    code: |
      my @state;
      for config()<list><> -> $v {
        my $s = %( version => $v );
        if "{cache_root_dir()}/{$v}_ok".IO ~~ :e {
          $s<status> = "OK";
        } else {
          $s<status> = "FAIL";
        }
        if "{cache_root_dir()}/{$v}_time".IO ~~ :e {
          $s<time> = "{cache_root_dir()}/{$v}_time".IO.slurp();
        } else {
          $s<time> = "NA";
        }
        @state.push: $s;
      }
      update_state %( list => @state );
    init: |
      for config()<list><> -> $v {
        run_task("test", %( version => $v ));
      }
    subtasks:
      -
        name: test
        language: Bash
        init: |
          ignore_error
        code: |
          set -e
          echo "Linux version: $os"
          curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
          -o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
          tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz          
          eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh)"
          which raku
          which zef
          raku --version
          zef --version
          
          cd source/
          zef install . --deps-only --test-depends --build-depends --/test -to=home         
          /usr/bin/time -f "%E real,%U user,%S sys | CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
          zef test --debug . && touch "${cache_root_dir}/${version}_ok"
          
    depends:
      -
        name: install-deps
  -
    name: install-deps
    language: Bash
    code: |
      sudo apt-get install -y time 
      zef install --/test Text::Table::Simple
23:10:15 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
source directory does not yet exist, download source archive from storage
23:10:19 :: [repository] - installing pack-unpack, version 0.000001
[task run: task.bash - unpack source archive]
[dump code: task.bash]
[1] set -e
[2] 
[3] file=$(config file)
[4] dir=$(config dir)
[5] 
[6] echo "tar -xzf $file "
[7] 
[8] tar -xzf $file
[9] 
[10] if test $dir; then
[11]   ls -l $dir
[12] fi
[13] 
[14] 
[task stdout]
23:10:22 :: tar -xzf source.tar.gz 
[task run: task.raku - tasks/main]
[dump code: task.raku]
[1] use Text::Table::Simple;
[2] my @columns = ("Rakudo Version", "Status", "Time", "Linux Dist");
[3] my @rows;
[4] my $fail = False;
[5] for config()<tasks><multi-versions><state><list><> -> $i {
[6]   @rows.push: [ $i<version>, $i<status>,  $i<time>, os() ];
[7]   $fail = True unless $i<status> eq "OK";
[8] }
[9] my @table = lol2table(@columns,@rows);
[10] .say for @table;
[11] die "some tests failed" if $fail == True;
[12] 
[task stdout]
23:14:55 :: O----------------O--------O---------------------------------------------------------O------------O
23:14:55 :: | Rakudo Version | Status | Time                                                    | Linux Dist |
23:14:55 :: O================O========O=========================================================O============O
23:14:55 :: | 2022.07        | FAIL   | Command exited with non-zero status 1                   | debian     |
23:14:55 :: |                |        | 0:37.47 real,45.83 user,3.24 sys | CPU Percentage: 130% |            |
23:14:55 :: | 2022.12        | FAIL   | Command exited with non-zero status 1                   | debian     |
23:14:55 :: |                |        | 0:57.37 real,70.19 user,4.13 sys | CPU Percentage: 129% |            |
23:14:55 :: --------------------------------------------------------------------------------------------------
[task stderr]
23:14:55 :: some tests failed
23:14:55 ::   in block <unit> at /var/.sparrowdo/env/main/.sparrowdo/tasks/main/task.raku line 11
23:14:55 :: 
23:14:55 :: task exit status: 1
23:14:55 :: task tasks/main FAILED
The spawned command 'docker exec -i sparrow-worker sh -l /var/.sparrowdo/env/main/.sparrowdo/sparrowrun.sh' exited unsuccessfully (exit code: 1, signal: 0)
  in block <unit> at /home/sph/.raku/resources/57C38AFDF922EB0C43584FF5F701A03850B5346F line 13
  in sub MAIN at /home/sph/.raku/bin/sparrowdo line 3
  in block <unit> at /home/sph/.raku/bin/sparrowdo line 1

23:10:44 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[task run: task.bash - tasks/multi-versions]
[dump code: task.bash]
[1] set -e
[2] echo "Linux version: $os"
[3] curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
[4] -o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
[5] tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz          
[6] eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh)"
[7] which raku
[8] which zef
[9] raku --version
[10] zef --version
[11] 
[12] cd source/
[13] zef install . --deps-only --test-depends --build-depends --/test -to=home         
[14] /usr/bin/time -f "%E real,%U user,%S sys | CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
[15] zef test --debug . && touch "${cache_root_dir}/${version}_ok"
[16] 
[task stdout]
23:11:26 :: Linux version: debian
23:11:27 ::                            Adding Rakudo to PATH
23:11:27 ::                           =======================
23:11:27 :: 
23:11:27 :: Paths successfully added.
23:11:27 :: 
23:11:27 :: ================================================================================
23:11:27 ::  =========                                                             __   __
23:11:27 ::   ||_|_||                =============================                (  \,/  )
23:11:27 ::   || # ||                 Welcome to the Raku Console                  \_ O _/
23:11:27 ::   || # ||                =============================                 (_/ \_)
23:11:27 :: 
23:11:27 :: This console has all the tools available you need to get started using Raku.
23:11:27 :: 
23:11:27 :: Rakudo provides an interactive command line interpreter (a so called Read Eval
23:11:27 :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
23:11:27 :: Start it by typing:
23:11:27 :: 
23:11:27 ::     raku
23:11:27 :: 
23:11:27 :: If you already have a Raku program in a file, you can run it by typing:
23:11:27 :: 
23:11:27 ::     raku path/to/my/program.raku
23:11:27 :: 
23:11:27 :: To install additional modules you can use the Zef module manager:
23:11:27 :: 
23:11:27 ::     zef install Some::Module
23:11:27 :: 
23:11:27 :: https://rakudo.org/           - The home of this implementation of Raku.
23:11:27 :: https://raku.land/            - Go here to browse for Raku modules.
23:11:27 :: https://docs.raku.org/        - The Raku documentation.
23:11:27 :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
23:11:27 :: 
23:11:27 ::                               Happy hacking!
23:11:27 :: 
23:11:27 :: ================================================================================
23:11:27 :: 
23:11:27 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/bin/raku
23:11:27 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/share/perl6/site/bin/zef
23:11:27 :: Welcome to Rakudo™ v2022.07.
23:11:27 :: Implementing the Raku® Programming Language v6.d.
23:11:27 :: Built on MoarVM version 2022.07.
23:11:56 :: v0.14.5
23:12:18 :: ===> Searching for missing dependencies: Base58, Digest, EC
23:13:04 :: ===> Searching for missing dependencies: FiniteFields
23:13:04 :: ===> Installing: Base58:ver<0.0.5>
23:13:04 :: ===> Installing: Digest:ver<0.27.4>
23:13:04 :: ===> Installing: FiniteFields:ver<0.3.0>:auth<zef:grondilu>
23:13:04 :: ===> Installing: EC:ver<0.6.3>:auth<zef:grondilu>
23:13:07 :: ===> Testing: Bitcoin:ver<0.6.0>:auth<zef:grondilu>
23:13:39 :: [Bitcoin] Testing with plugin: Zef::Service::Shell::prove+{<anon|1>}
23:13:39 :: [Bitcoin] t/basics.t .. 
23:13:39 :: [Bitcoin] ok 1 - 
23:13:39 :: [Bitcoin] ok 2 - 
23:13:39 :: [Bitcoin] ok 3 - 
23:13:39 :: [Bitcoin] ok 4 - 
23:13:39 :: [Bitcoin] ok 5 - 
23:13:39 :: [Bitcoin] 1..5
23:13:39 :: [Bitcoin] ok
23:13:39 :: [Bitcoin] t/bip32.t ... 
23:13:39 :: [Bitcoin] # Subtest
23:13:39 :: [Bitcoin]     ok 1 - 
23:13:39 :: [Bitcoin]     ok 2 - 
23:13:39 :: [Bitcoin]     ok 3 - 
23:13:39 :: [Bitcoin]     ok 4 - 
23:13:39 :: [Bitcoin]     ok 5 - 
23:13:39 :: [Bitcoin]     ok 6 - 
23:13:39 :: [Bitcoin]     ok 7 - 
23:13:39 :: [Bitcoin]     ok 8 - 
23:13:39 :: [Bitcoin]     ok 9 - 
23:13:39 :: [Bitcoin]     ok 10 - 
23:13:39 :: [Bitcoin]     ok 11 - 
23:13:39 :: [Bitcoin]     ok 12 - 
23:13:39 :: [Bitcoin]     1..12
23:13:39 :: [Bitcoin] ok 1 - 
23:13:39 :: [Bitcoin] # Subtest
23:13:39 :: [Bitcoin]     ok 1 - 
23:13:39 :: [Bitcoin]     ok 2 - 
23:13:39 :: [Bitcoin]     ok 3 - 
23:13:39 :: [Bitcoin]     ok 4 - 
23:13:39 :: [Bitcoin]     ok 5 - 
23:13:39 :: [Bitcoin]     ok 6 - 
23:13:39 :: [Bitcoin]     ok 7 - 
23:13:39 :: [Bitcoin]     ok 8 - 
23:13:39 :: [Bitcoin]     ok 9 - 
23:13:39 :: [Bitcoin]     ok 10 - 
23:13:39 :: [Bitcoin]     ok 11 - 
23:13:39 :: [Bitcoin]     ok 12 - 
23:13:39 :: [Bitcoin]     1..12
23:13:39 :: [Bitcoin] ok 2 - 
23:13:39 :: [Bitcoin] # Subtest
23:13:39 :: [Bitcoin]     ok 1 - 
23:13:39 :: [Bitcoin]     ok 2 - 
23:13:39 :: [Bitcoin]     ok 3 - 
23:13:39 :: [Bitcoin]     ok 4 - 
23:13:39 :: [Bitcoin]     1..4
23:13:39 :: [Bitcoin] ok 3 - 
23:13:39 :: [Bitcoin] # Subtest
23:13:39 :: [Bitcoin]     ok 1 - 
23:13:39 :: [Bitcoin]     ok 2 - 
23:13:39 :: [Bitcoin]     ok 3 - 
23:13:39 :: [Bitcoin]     ok 4 - 
23:13:39 :: [Bitcoin]     ok 5 - 
23:13:39 :: [Bitcoin]     ok 6 - 
23:13:39 :: [Bitcoin]     1..6
23:13:39 :: [Bitcoin] ok 4 - 
23:13:39 :: [Bitcoin] # Subtest
23:13:39 :: [Bitcoin]     ok 1 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 2 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 3 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 4 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 5 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 6 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 7 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 8 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 9 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 10 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 11 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 12 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 13 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 14 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 15 - # SKIP NYI
23:13:39 :: [Bitcoin]     ok 16 - # SKIP NYI
23:13:39 :: [Bitcoin]     1..16
23:13:39 :: [Bitcoin] ok 5 - 
23:13:39 :: [Bitcoin] 1..5
23:13:39 :: [Bitcoin] ok
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(197,82,87,195,96,192,124,114,2,154,235,193,181,60,5,237,3,98,173,163,142,173,62,62,158,250,55,8,229,52,149,83,31,9,166,152,117,153,209,130,100,193,225,201,47,44,241,65,99,12,122,60,74,183,200,27,47,0,22,152,231,70,59,4)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← 00000000000000000000000000000000'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(46,137,5,129,155,135,35,254,44,29,22,24,96,229,238,24,48,49,141,191,73,168,59,212,81,207,184,68,12,40,189,111,164,87,254,18,150,16,101,89,163,200,9,55,161,193,6,155,227,163,165,189,56,30,230,38,14,141,151,57,252,225,246,7)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(215,29,232,86,248,26,138,204,101,230,252,133,26,56,212,215,236,33,111,208,121,109,10,104,39,163,173,110,213,81,26,48,250,40,15,18,235,46,71,237,42,192,59,92,70,42,3,88,209,141,105,254,79,152,94,200,23,120,193,179,112,182,82,168)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← 80808080808080808080808080808080'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(172,39,73,84,128,34,82,34,7,157,123,225,129,88,55,81,232,111,87,16,39,176,73,123,91,93,17,33,142,10,138,19,51,37,114,145,127,15,142,90,88,150,32,198,241,91,17,198,29,238,50,118,81,161,76,52,225,130,49,5,46,72,192,105)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← ffffffffffffffffffffffffffffffff'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(3,88,149,242,244,129,177,176,240,31,207,140,40,156,121,70,96,178,137,152,26,120,248,16,100,71,112,127,221,150,102,202,6,218,90,154,86,81,129,89,155,121,245,59,132,77,138,113,221,159,67,156,82,163,215,179,232,167,156,144,106,200,69,250)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← 000000000000000000000000000000000000000000000000'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(242,185,69,8,115,43,203,172,188,192,32,250,239,236,252,137,254,175,166,100,154,84,145,184,201,82,206,222,73,108,33,74,12,123,60,57,45,22,135,72,242,212,166,18,186,218,7,83,181,42,28,122,197,60,30,147,171,213,198,50,11,158,149,221)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(16,125,124,2,165,170,111,56,197,128,131,255,116,240,76,96,124,45,44,14,204,85,80,29,173,215,45,2,91,117,27,194,127,233,19,255,183,150,248,65,196,155,29,51,182,16,207,14,145,211,170,35,144,39,245,233,159,228,206,158,80,136,205,101)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← 808080808080808080808080808080808080808080808080'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(12,214,229,216,39,187,98,235,143,193,226,98,37,66,35,129,127,208,104,167,75,91,68,156,194,246,103,195,241,249,133,167,99,121,180,51,72,217,82,226,38,91,76,209,41,9,7,88,179,227,194,196,145,3,181,5,26,172,46,174,184,144,165,40)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← ffffffffffffffffffffffffffffffffffffffffffffffff'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(189,168,84,70,198,132,19,112,112,144,165,32,34,237,210,106,28,148,98,41,80,41,242,230,12,215,196,242,187,211,9,113,112,175,122,77,115,36,92,175,169,195,204,168,213,97,167,195,222,111,93,74,16,190,142,210,165,230,8,214,143,146,252,200)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← 0000000000000000000000000000000000000000000000000000000000000000'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:39 :: [Bitcoin]     # expected: Blob[uint8].new(188,9,252,161,128,79,126,105,218,147,194,242,2,142,178,56,194,39,242,233,221,163,12,214,54,153,35,37,120,72,10,64,33,177,70,173,113,127,187,126,69,28,233,235,131,95,67,98,11,245,197,20,219,15,138,221,73,245,209,33,68,157,62,135)
23:13:39 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:39 :: [Bitcoin]     # You failed 1 test of 3
23:13:39 :: [Bitcoin] # Failed test 'entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f'
23:13:39 :: [Bitcoin] # at t/bip39.t line 40
23:13:39 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:39 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:39 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(192,197,25,189,14,145,162,237,84,53,125,157,30,190,246,245,175,33,138,21,54,36,207,79,45,169,17,160,237,143,122,9,226,239,97,175,10,202,0,112,150,223,67,0,34,247,162,182,251,145,102,26,149,137,9,112,105,114,13,1,94,78,152,47)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← 8080808080808080808080808080808080808080808080808080808080808080'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(221,72,193,4,105,140,48,207,226,182,20,33,3,36,134,34,251,123,176,255,105,46,235,176,0,137,179,45,34,72,78,22,19,145,47,10,91,105,68,7,190,137,159,253,49,237,57,146,196,86,205,246,15,93,69,100,184,186,63,5,166,152,144,173)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(39,77,220,82,88,2,247,200,40,216,239,125,219,205,197,48,78,135,172,53,53,145,54,17,251,191,169,134,208,201,229,71,108,145,104,159,156,138,84,253,85,189,56,96,106,166,168,89,90,210,19,212,201,201,249,172,163,251,33,112,105,164,16,40)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← 9e885d952ad362caeb4efe34a8e91bd2'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(98,140,56,39,168,130,50,152,238,104,93,184,79,85,202,163,75,92,193,149,167,120,229,45,69,245,155,207,117,171,166,142,77,117,144,225,1,220,65,75,193,187,213,115,118,102,251,190,243,93,31,25,3,149,59,102,98,79,145,15,238,242,69,172)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← 6610b25967cdcca9d59875f5cb50b0ea75433311869e930b'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(100,200,124,222,126,18,236,246,112,74,185,91,177,64,139,239,4,124,34,219,76,199,73,28,66,113,209,112,161,178,19,210,11,56,91,193,88,141,156,123,56,241,179,157,65,86,101,184,169,3,12,158,198,83,215,94,101,248,71,216,252,31,196,64)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← 68a79eaca2324873eacc50cb9c6eca8cc68ea5d936f98787c60c7ebc74e6ce7c'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(234,114,88,149,170,174,141,76,28,246,130,193,191,210,211,88,213,46,217,240,240,89,17,49,181,89,226,114,75,178,52,252,160,90,169,192,44,87,64,126,4,238,157,195,180,84,170,99,251,255,72,58,139,17,222,148,150,36,185,241,131,26,150,18)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← c0ba5a8e914111210f2bd131f3d5e08d'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(253,87,152,40,175,61,161,211,37,68,206,77,181,199,61,83,252,138,204,77,219,30,59,37,26,49,23,156,219,113,232,83,197,109,47,203,17,174,211,152,152,206,108,52,177,11,83,130,119,45,184,121,110,82,131,123,84,70,138,235,49,44,252,61)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← 6d9be1ee6ebd27a258115aad99b7317b9c8d28b6d76431c3'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(114,190,142,5,47,196,145,157,42,223,40,213,48,107,84,116,176,6,157,243,91,2,48,61,232,193,114,156,149,56,219,182,252,45,115,29,95,131,33,147,205,159,182,174,236,188,70,149,148,167,14,61,213,8,17,181,6,127,59,136,178,140,62,141)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← 9f6a2878b2520799a44ef18bc7df394e7061a224d2c33cd015b157d746869863'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(222,181,244,84,73,230,21,254,255,86,64,242,228,159,147,63,245,24,149,222,59,67,129,131,43,49,57,148,28,87,181,146,5,164,36,128,197,33,117,182,239,207,250,165,138,37,3,136,124,30,139,54,58,112,114,86,189,210,181,135,180,101,65,245)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← 23db8160a31d3e0dca3688ed941adbf3'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(76,189,255,28,162,219,128,15,214,28,174,114,165,116,117,253,198,186,176,62,68,31,214,63,150,218,189,31,24,62,245,183,130,146,95,0,16,95,49,131,9,167,233,195,234,105,103,199,128,30,70,200,165,128,130,103,76,134,10,55,185,62,218,2)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← 8197a4a47f0425faeaa69deebc05ca29c0a5b5cc76ceacc0'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(38,233,117,236,100,68,35,244,164,196,244,33,94,240,155,75,215,239,146,78,133,209,209,124,76,243,241,54,194,134,60,246,223,10,71,80,69,101,44,87,235,95,180,21,19,202,42,45,103,114,43,119,233,84,180,179,252,17,247,89,4,73,25,29)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← 066dca1a2bb7e8a1db2832148ce9933eea0f3ac9548d793112d9a95c9407efad'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(42,170,146,66,218,175,206,230,170,157,114,105,241,125,78,254,39,30,27,154,82,145,120,215,220,19,156,209,135,71,9,11,249,214,2,149,208,206,116,48,154,120,133,42,156,170,223,10,244,138,174,28,98,83,131,150,36,7,98,36,55,75,198,63)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← f30f8c1da665478f49b001d94c5fc452'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(123,74,16,190,157,152,230,203,162,101,86,109,183,241,54,113,142,19,152,199,28,181,129,225,178,244,100,202,193,206,237,244,243,226,116,220,39,0,3,198,112,173,141,2,196,85,139,47,142,57,237,234,39,117,201,226,50,199,203,121,139,6,158,136)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← c10ec20dc3cd9f652c7fac2f1230f7a3c828389a14392f05'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:13:42 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:13:42 :: [Bitcoin]     # at t/bip39.t line 42
23:13:42 :: [Bitcoin]     # expected: Blob[uint8].new(1,245,188,237,89,222,196,142,54,47,44,69,181,222,104,185,253,108,146,198,99,79,68,214,212,10,171,105,5,101,6,240,227,85,36,165,24,3,77,220,17,146,225,218,205,50,193,237,62,170,60,59,19,28,136,237,142,126,84,196,154,93,9,152)
23:13:42 :: [Bitcoin]     #      got: Buf[uint8].new()
23:13:42 :: [Bitcoin]     # You failed 1 test of 3
23:13:42 :: [Bitcoin] # Failed test 'entropy ← f585c11aec520db57dd353c69554b21a89b20fb0650966fa0a9d6f74fd989d8f'
23:13:42 :: [Bitcoin] # at t/bip39.t line 40
23:13:42 :: [Bitcoin] # You failed 24 tests of 24
23:13:42 :: [Bitcoin] t/bip39.t ... 
23:13:42 :: [Bitcoin] # Subtest: entropy ← 00000000000000000000000000000000
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 1 - entropy ← 00000000000000000000000000000000
23:13:42 :: [Bitcoin] # Subtest: entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 2 - entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:13:42 :: [Bitcoin] # Subtest: entropy ← 80808080808080808080808080808080
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 3 - entropy ← 80808080808080808080808080808080
23:13:42 :: [Bitcoin] # Subtest: entropy ← ffffffffffffffffffffffffffffffff
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 4 - entropy ← ffffffffffffffffffffffffffffffff
23:13:42 :: [Bitcoin] # Subtest: entropy ← 000000000000000000000000000000000000000000000000
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 5 - entropy ← 000000000000000000000000000000000000000000000000
23:13:42 :: [Bitcoin] # Subtest: entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 6 - entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:13:42 :: [Bitcoin] # Subtest: entropy ← 808080808080808080808080808080808080808080808080
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 7 - entropy ← 808080808080808080808080808080808080808080808080
23:13:42 :: [Bitcoin] # Subtest: entropy ← ffffffffffffffffffffffffffffffffffffffffffffffff
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 8 - entropy ← ffffffffffffffffffffffffffffffffffffffffffffffff
23:13:42 :: [Bitcoin] # Subtest: entropy ← 0000000000000000000000000000000000000000000000000000000000000000
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 9 - entropy ← 0000000000000000000000000000000000000000000000000000000000000000
23:13:42 :: [Bitcoin] # Subtest: entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 10 - entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:13:42 :: [Bitcoin] # Subtest: entropy ← 8080808080808080808080808080808080808080808080808080808080808080
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 11 - entropy ← 8080808080808080808080808080808080808080808080808080808080808080
23:13:42 :: [Bitcoin] # Subtest: entropy ← ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 12 - entropy ← ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
23:13:42 :: [Bitcoin] # Subtest: entropy ← 9e885d952ad362caeb4efe34a8e91bd2
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 13 - entropy ← 9e885d952ad362caeb4efe34a8e91bd2
23:13:42 :: [Bitcoin] # Subtest: entropy ← 6610b25967cdcca9d59875f5cb50b0ea75433311869e930b
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 14 - entropy ← 6610b25967cdcca9d59875f5cb50b0ea75433311869e930b
23:13:42 :: [Bitcoin] # Subtest: entropy ← 68a79eaca2324873eacc50cb9c6eca8cc68ea5d936f98787c60c7ebc74e6ce7c
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 15 - entropy ← 68a79eaca2324873eacc50cb9c6eca8cc68ea5d936f98787c60c7ebc74e6ce7c
23:13:42 :: [Bitcoin] # Subtest: entropy ← c0ba5a8e914111210f2bd131f3d5e08d
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 16 - entropy ← c0ba5a8e914111210f2bd131f3d5e08d
23:13:42 :: [Bitcoin] # Subtest: entropy ← 6d9be1ee6ebd27a258115aad99b7317b9c8d28b6d76431c3
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 17 - entropy ← 6d9be1ee6ebd27a258115aad99b7317b9c8d28b6d76431c3
23:13:42 :: [Bitcoin] # Subtest: entropy ← 9f6a2878b2520799a44ef18bc7df394e7061a224d2c33cd015b157d746869863
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 18 - entropy ← 9f6a2878b2520799a44ef18bc7df394e7061a224d2c33cd015b157d746869863
23:13:42 :: [Bitcoin] # Subtest: entropy ← 23db8160a31d3e0dca3688ed941adbf3
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 19 - entropy ← 23db8160a31d3e0dca3688ed941adbf3
23:13:42 :: [Bitcoin] # Subtest: entropy ← 8197a4a47f0425faeaa69deebc05ca29c0a5b5cc76ceacc0
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 20 - entropy ← 8197a4a47f0425faeaa69deebc05ca29c0a5b5cc76ceacc0
23:13:42 :: [Bitcoin] # Subtest: entropy ← 066dca1a2bb7e8a1db2832148ce9933eea0f3ac9548d793112d9a95c9407efad
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 21 - entropy ← 066dca1a2bb7e8a1db2832148ce9933eea0f3ac9548d793112d9a95c9407efad
23:13:42 :: [Bitcoin] # Subtest: entropy ← f30f8c1da665478f49b001d94c5fc452
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 22 - entropy ← f30f8c1da665478f49b001d94c5fc452
23:13:42 :: [Bitcoin] # Subtest: entropy ← c10ec20dc3cd9f652c7fac2f1230f7a3c828389a14392f05
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 23 - entropy ← c10ec20dc3cd9f652c7fac2f1230f7a3c828389a14392f05
23:13:42 :: [Bitcoin] # Subtest: entropy ← f585c11aec520db57dd353c69554b21a89b20fb0650966fa0a9d6f74fd989d8f
23:13:42 :: [Bitcoin]     ok 1 - entropy → mnemo
23:13:42 :: [Bitcoin]     not ok 2 - mnemo → seed
23:13:42 :: [Bitcoin]     ok 3 - seed → master key
23:13:42 :: [Bitcoin]     1..3
23:13:42 :: [Bitcoin] not ok 24 - entropy ← f585c11aec520db57dd353c69554b21a89b20fb0650966fa0a9d6f74fd989d8f
23:13:42 :: [Bitcoin] 1..24
23:13:42 :: [Bitcoin] Dubious, test returned 24 (wstat 6144, 0x1800)
23:13:42 :: [Bitcoin] Failed 24/24 subtests 
23:13:42 :: [Bitcoin] Test Summary Report
23:13:42 :: [Bitcoin] -------------------
23:13:42 :: [Bitcoin] t/bip39.t (Wstat: 6144 Tests: 24 Failed: 24)
23:13:42 :: [Bitcoin]   Failed tests:  1-24
23:13:42 :: [Bitcoin]   Non-zero exit status: 24
23:13:42 :: [Bitcoin] Files=3, Tests=34, 35 wallclock secs ( 0.11 usr  0.04 sys + 41.93 cusr  2.60 csys = 44.68 CPU)
23:13:42 :: [Bitcoin] Result: FAIL
23:13:42 :: ===> Testing [FAIL]: Bitcoin:ver<0.6.0>:auth<zef:grondilu>
[task stderr]
23:13:42 :: Aborting due to test failure: Bitcoin:ver<0.6.0>:auth<zef:grondilu> (use --force-test to override)
[task run: task.bash - tasks/multi-versions]
[dump code: task.bash]
[1] set -e
[2] echo "Linux version: $os"
[3] curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
[4] -o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
[5] tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz          
[6] eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh)"
[7] which raku
[8] which zef
[9] raku --version
[10] zef --version
[11] 
[12] cd source/
[13] zef install . --deps-only --test-depends --build-depends --/test -to=home         
[14] /usr/bin/time -f "%E real,%U user,%S sys | CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
[15] zef test --debug . && touch "${cache_root_dir}/${version}_ok"
[16] 
[task stdout]
23:13:42 :: Linux version: debian
23:13:45 ::                            Adding Rakudo to PATH
23:13:45 ::                           =======================
23:13:45 :: 
23:13:45 :: Paths successfully added.
23:13:45 :: 
23:13:45 :: ================================================================================
23:13:45 ::  =========                                                             __   __
23:13:45 ::   ||_|_||                =============================                (  \,/  )
23:13:45 ::   || # ||                 Welcome to the Raku Console                  \_ O _/
23:13:45 ::   || # ||                =============================                 (_/ \_)
23:13:45 :: 
23:13:45 :: This console has all the tools available you need to get started using Raku.
23:13:45 :: 
23:13:45 :: Rakudo provides an interactive command line interpreter (a so called Read Eval
23:13:45 :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
23:13:45 :: Start it by typing:
23:13:45 :: 
23:13:45 ::     raku
23:13:45 :: 
23:13:45 :: If you already have a Raku program in a file, you can run it by typing:
23:13:45 :: 
23:13:45 ::     raku path/to/my/program.raku
23:13:45 :: 
23:13:45 :: To install additional modules you can use the Zef module manager:
23:13:45 :: 
23:13:45 ::     zef install Some::Module
23:13:45 :: 
23:13:45 :: https://rakudo.org/           - The home of this implementation of Raku.
23:13:45 :: https://raku.land/            - Go here to browse for Raku modules.
23:13:45 :: https://docs.raku.org/        - The Raku documentation.
23:13:45 :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
23:13:45 :: 
23:13:45 ::                               Happy hacking!
23:13:45 :: 
23:13:45 :: ================================================================================
23:13:45 :: 
23:13:45 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/bin/raku
23:13:45 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/share/perl6/site/bin/zef
23:13:45 :: Welcome to Rakudo™ v2022.12.
23:13:45 :: Implementing the Raku® Programming Language v6.d.
23:13:45 :: Built on MoarVM version 2022.12.
23:13:46 :: v0.14.5
23:13:52 :: ===> Testing: Bitcoin:ver<0.6.0>:auth<zef:grondilu>
23:14:45 :: [Bitcoin] Testing with plugin: Zef::Service::Shell::prove+{<anon|1>}
23:14:45 :: [Bitcoin] t/basics.t .. 
23:14:45 :: [Bitcoin] ok 1 - 
23:14:45 :: [Bitcoin] ok 2 - 
23:14:45 :: [Bitcoin] ok 3 - 
23:14:45 :: [Bitcoin] ok 4 - 
23:14:45 :: [Bitcoin] ok 5 - 
23:14:45 :: [Bitcoin] 1..5
23:14:45 :: [Bitcoin] ok
23:14:45 :: [Bitcoin] t/bip32.t ... 
23:14:45 :: [Bitcoin] # Subtest
23:14:45 :: [Bitcoin]     ok 1 - 
23:14:45 :: [Bitcoin]     ok 2 - 
23:14:45 :: [Bitcoin]     ok 3 - 
23:14:45 :: [Bitcoin]     ok 4 - 
23:14:45 :: [Bitcoin]     ok 5 - 
23:14:45 :: [Bitcoin]     ok 6 - 
23:14:45 :: [Bitcoin]     ok 7 - 
23:14:45 :: [Bitcoin]     ok 8 - 
23:14:45 :: [Bitcoin]     ok 9 - 
23:14:45 :: [Bitcoin]     ok 10 - 
23:14:45 :: [Bitcoin]     ok 11 - 
23:14:45 :: [Bitcoin]     ok 12 - 
23:14:45 :: [Bitcoin]     1..12
23:14:45 :: [Bitcoin] ok 1 - 
23:14:45 :: [Bitcoin] # Subtest
23:14:45 :: [Bitcoin]     ok 1 - 
23:14:45 :: [Bitcoin]     ok 2 - 
23:14:45 :: [Bitcoin]     ok 3 - 
23:14:45 :: [Bitcoin]     ok 4 - 
23:14:45 :: [Bitcoin]     ok 5 - 
23:14:45 :: [Bitcoin]     ok 6 - 
23:14:45 :: [Bitcoin]     ok 7 - 
23:14:45 :: [Bitcoin]     ok 8 - 
23:14:45 :: [Bitcoin]     ok 9 - 
23:14:45 :: [Bitcoin]     ok 10 - 
23:14:45 :: [Bitcoin]     ok 11 - 
23:14:45 :: [Bitcoin]     ok 12 - 
23:14:45 :: [Bitcoin]     1..12
23:14:45 :: [Bitcoin] ok 2 - 
23:14:45 :: [Bitcoin] # Subtest
23:14:45 :: [Bitcoin]     ok 1 - 
23:14:45 :: [Bitcoin]     ok 2 - 
23:14:45 :: [Bitcoin]     ok 3 - 
23:14:45 :: [Bitcoin]     ok 4 - 
23:14:45 :: [Bitcoin]     1..4
23:14:45 :: [Bitcoin] ok 3 - 
23:14:45 :: [Bitcoin] # Subtest
23:14:45 :: [Bitcoin]     ok 1 - 
23:14:45 :: [Bitcoin]     ok 2 - 
23:14:45 :: [Bitcoin]     ok 3 - 
23:14:45 :: [Bitcoin]     ok 4 - 
23:14:45 :: [Bitcoin]     ok 5 - 
23:14:45 :: [Bitcoin]     ok 6 - 
23:14:45 :: [Bitcoin]     1..6
23:14:45 :: [Bitcoin] ok 4 - 
23:14:45 :: [Bitcoin] # Subtest
23:14:45 :: [Bitcoin]     ok 1 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 2 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 3 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 4 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 5 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 6 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 7 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 8 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 9 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 10 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 11 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 12 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 13 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 14 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 15 - # SKIP NYI
23:14:45 :: [Bitcoin]     ok 16 - # SKIP NYI
23:14:45 :: [Bitcoin]     1..16
23:14:45 :: [Bitcoin] ok 5 - 
23:14:45 :: [Bitcoin] 1..5
23:14:45 :: [Bitcoin] ok
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(197,82,87,195,96,192,124,114,2,154,235,193,181,60,5,237,3,98,173,163,142,173,62,62,158,250,55,8,229,52,149,83,31,9,166,152,117,153,209,130,100,193,225,201,47,44,241,65,99,12,122,60,74,183,200,27,47,0,22,152,231,70,59,4)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← 00000000000000000000000000000000'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(46,137,5,129,155,135,35,254,44,29,22,24,96,229,238,24,48,49,141,191,73,168,59,212,81,207,184,68,12,40,189,111,164,87,254,18,150,16,101,89,163,200,9,55,161,193,6,155,227,163,165,189,56,30,230,38,14,141,151,57,252,225,246,7)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(215,29,232,86,248,26,138,204,101,230,252,133,26,56,212,215,236,33,111,208,121,109,10,104,39,163,173,110,213,81,26,48,250,40,15,18,235,46,71,237,42,192,59,92,70,42,3,88,209,141,105,254,79,152,94,200,23,120,193,179,112,182,82,168)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← 80808080808080808080808080808080'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(172,39,73,84,128,34,82,34,7,157,123,225,129,88,55,81,232,111,87,16,39,176,73,123,91,93,17,33,142,10,138,19,51,37,114,145,127,15,142,90,88,150,32,198,241,91,17,198,29,238,50,118,81,161,76,52,225,130,49,5,46,72,192,105)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← ffffffffffffffffffffffffffffffff'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(3,88,149,242,244,129,177,176,240,31,207,140,40,156,121,70,96,178,137,152,26,120,248,16,100,71,112,127,221,150,102,202,6,218,90,154,86,81,129,89,155,121,245,59,132,77,138,113,221,159,67,156,82,163,215,179,232,167,156,144,106,200,69,250)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← 000000000000000000000000000000000000000000000000'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(242,185,69,8,115,43,203,172,188,192,32,250,239,236,252,137,254,175,166,100,154,84,145,184,201,82,206,222,73,108,33,74,12,123,60,57,45,22,135,72,242,212,166,18,186,218,7,83,181,42,28,122,197,60,30,147,171,213,198,50,11,158,149,221)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(16,125,124,2,165,170,111,56,197,128,131,255,116,240,76,96,124,45,44,14,204,85,80,29,173,215,45,2,91,117,27,194,127,233,19,255,183,150,248,65,196,155,29,51,182,16,207,14,145,211,170,35,144,39,245,233,159,228,206,158,80,136,205,101)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← 808080808080808080808080808080808080808080808080'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(12,214,229,216,39,187,98,235,143,193,226,98,37,66,35,129,127,208,104,167,75,91,68,156,194,246,103,195,241,249,133,167,99,121,180,51,72,217,82,226,38,91,76,209,41,9,7,88,179,227,194,196,145,3,181,5,26,172,46,174,184,144,165,40)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← ffffffffffffffffffffffffffffffffffffffffffffffff'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(189,168,84,70,198,132,19,112,112,144,165,32,34,237,210,106,28,148,98,41,80,41,242,230,12,215,196,242,187,211,9,113,112,175,122,77,115,36,92,175,169,195,204,168,213,97,167,195,222,111,93,74,16,190,142,210,165,230,8,214,143,146,252,200)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← 0000000000000000000000000000000000000000000000000000000000000000'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:45 :: [Bitcoin]     # expected: Blob[uint8].new(188,9,252,161,128,79,126,105,218,147,194,242,2,142,178,56,194,39,242,233,221,163,12,214,54,153,35,37,120,72,10,64,33,177,70,173,113,127,187,126,69,28,233,235,131,95,67,98,11,245,197,20,219,15,138,221,73,245,209,33,68,157,62,135)
23:14:45 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:45 :: [Bitcoin]     # You failed 1 test of 3
23:14:45 :: [Bitcoin] # Failed test 'entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f'
23:14:45 :: [Bitcoin] # at t/bip39.t line 40
23:14:45 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:45 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:45 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(192,197,25,189,14,145,162,237,84,53,125,157,30,190,246,245,175,33,138,21,54,36,207,79,45,169,17,160,237,143,122,9,226,239,97,175,10,202,0,112,150,223,67,0,34,247,162,182,251,145,102,26,149,137,9,112,105,114,13,1,94,78,152,47)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← 8080808080808080808080808080808080808080808080808080808080808080'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(221,72,193,4,105,140,48,207,226,182,20,33,3,36,134,34,251,123,176,255,105,46,235,176,0,137,179,45,34,72,78,22,19,145,47,10,91,105,68,7,190,137,159,253,49,237,57,146,196,86,205,246,15,93,69,100,184,186,63,5,166,152,144,173)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(39,77,220,82,88,2,247,200,40,216,239,125,219,205,197,48,78,135,172,53,53,145,54,17,251,191,169,134,208,201,229,71,108,145,104,159,156,138,84,253,85,189,56,96,106,166,168,89,90,210,19,212,201,201,249,172,163,251,33,112,105,164,16,40)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← 9e885d952ad362caeb4efe34a8e91bd2'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(98,140,56,39,168,130,50,152,238,104,93,184,79,85,202,163,75,92,193,149,167,120,229,45,69,245,155,207,117,171,166,142,77,117,144,225,1,220,65,75,193,187,213,115,118,102,251,190,243,93,31,25,3,149,59,102,98,79,145,15,238,242,69,172)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← 6610b25967cdcca9d59875f5cb50b0ea75433311869e930b'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(100,200,124,222,126,18,236,246,112,74,185,91,177,64,139,239,4,124,34,219,76,199,73,28,66,113,209,112,161,178,19,210,11,56,91,193,88,141,156,123,56,241,179,157,65,86,101,184,169,3,12,158,198,83,215,94,101,248,71,216,252,31,196,64)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← 68a79eaca2324873eacc50cb9c6eca8cc68ea5d936f98787c60c7ebc74e6ce7c'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(234,114,88,149,170,174,141,76,28,246,130,193,191,210,211,88,213,46,217,240,240,89,17,49,181,89,226,114,75,178,52,252,160,90,169,192,44,87,64,126,4,238,157,195,180,84,170,99,251,255,72,58,139,17,222,148,150,36,185,241,131,26,150,18)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← c0ba5a8e914111210f2bd131f3d5e08d'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(253,87,152,40,175,61,161,211,37,68,206,77,181,199,61,83,252,138,204,77,219,30,59,37,26,49,23,156,219,113,232,83,197,109,47,203,17,174,211,152,152,206,108,52,177,11,83,130,119,45,184,121,110,82,131,123,84,70,138,235,49,44,252,61)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← 6d9be1ee6ebd27a258115aad99b7317b9c8d28b6d76431c3'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(114,190,142,5,47,196,145,157,42,223,40,213,48,107,84,116,176,6,157,243,91,2,48,61,232,193,114,156,149,56,219,182,252,45,115,29,95,131,33,147,205,159,182,174,236,188,70,149,148,167,14,61,213,8,17,181,6,127,59,136,178,140,62,141)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← 9f6a2878b2520799a44ef18bc7df394e7061a224d2c33cd015b157d746869863'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(222,181,244,84,73,230,21,254,255,86,64,242,228,159,147,63,245,24,149,222,59,67,129,131,43,49,57,148,28,87,181,146,5,164,36,128,197,33,117,182,239,207,250,165,138,37,3,136,124,30,139,54,58,112,114,86,189,210,181,135,180,101,65,245)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← 23db8160a31d3e0dca3688ed941adbf3'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(76,189,255,28,162,219,128,15,214,28,174,114,165,116,117,253,198,186,176,62,68,31,214,63,150,218,189,31,24,62,245,183,130,146,95,0,16,95,49,131,9,167,233,195,234,105,103,199,128,30,70,200,165,128,130,103,76,134,10,55,185,62,218,2)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← 8197a4a47f0425faeaa69deebc05ca29c0a5b5cc76ceacc0'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(38,233,117,236,100,68,35,244,164,196,244,33,94,240,155,75,215,239,146,78,133,209,209,124,76,243,241,54,194,134,60,246,223,10,71,80,69,101,44,87,235,95,180,21,19,202,42,45,103,114,43,119,233,84,180,179,252,17,247,89,4,73,25,29)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← 066dca1a2bb7e8a1db2832148ce9933eea0f3ac9548d793112d9a95c9407efad'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(42,170,146,66,218,175,206,230,170,157,114,105,241,125,78,254,39,30,27,154,82,145,120,215,220,19,156,209,135,71,9,11,249,214,2,149,208,206,116,48,154,120,133,42,156,170,223,10,244,138,174,28,98,83,131,150,36,7,98,36,55,75,198,63)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← f30f8c1da665478f49b001d94c5fc452'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:47 :: [Bitcoin]     # expected: Blob[uint8].new(123,74,16,190,157,152,230,203,162,101,86,109,183,241,54,113,142,19,152,199,28,181,129,225,178,244,100,202,193,206,237,244,243,226,116,220,39,0,3,198,112,173,141,2,196,85,139,47,142,57,237,234,39,117,201,226,50,199,203,121,139,6,158,136)
23:14:47 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:47 :: [Bitcoin]     # You failed 1 test of 3
23:14:47 :: [Bitcoin] # Failed test 'entropy ← c10ec20dc3cd9f652c7fac2f1230f7a3c828389a14392f05'
23:14:47 :: [Bitcoin] # at t/bip39.t line 40
23:14:47 :: [Bitcoin] Invalid command 'kdf'; type "help" for a list.
23:14:47 :: [Bitcoin]     # Failed test 'mnemo → seed'
23:14:47 :: [Bitcoin]     # at t/bip39.t line 42
23:14:48 :: [Bitcoin]     # expected: Blob[uint8].new(1,245,188,237,89,222,196,142,54,47,44,69,181,222,104,185,253,108,146,198,99,79,68,214,212,10,171,105,5,101,6,240,227,85,36,165,24,3,77,220,17,146,225,218,205,50,193,237,62,170,60,59,19,28,136,237,142,126,84,196,154,93,9,152)
23:14:48 :: [Bitcoin]     #      got: Buf[uint8].new()
23:14:48 :: [Bitcoin]     # You failed 1 test of 3
23:14:48 :: [Bitcoin] # Failed test 'entropy ← f585c11aec520db57dd353c69554b21a89b20fb0650966fa0a9d6f74fd989d8f'
23:14:48 :: [Bitcoin] # at t/bip39.t line 40
23:14:48 :: [Bitcoin] # You failed 24 tests of 24
23:14:48 :: [Bitcoin] t/bip39.t ... 
23:14:48 :: [Bitcoin] # Subtest: entropy ← 00000000000000000000000000000000
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 1 - entropy ← 00000000000000000000000000000000
23:14:48 :: [Bitcoin] # Subtest: entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 2 - entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:14:48 :: [Bitcoin] # Subtest: entropy ← 80808080808080808080808080808080
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 3 - entropy ← 80808080808080808080808080808080
23:14:48 :: [Bitcoin] # Subtest: entropy ← ffffffffffffffffffffffffffffffff
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 4 - entropy ← ffffffffffffffffffffffffffffffff
23:14:48 :: [Bitcoin] # Subtest: entropy ← 000000000000000000000000000000000000000000000000
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 5 - entropy ← 000000000000000000000000000000000000000000000000
23:14:48 :: [Bitcoin] # Subtest: entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 6 - entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:14:48 :: [Bitcoin] # Subtest: entropy ← 808080808080808080808080808080808080808080808080
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 7 - entropy ← 808080808080808080808080808080808080808080808080
23:14:48 :: [Bitcoin] # Subtest: entropy ← ffffffffffffffffffffffffffffffffffffffffffffffff
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 8 - entropy ← ffffffffffffffffffffffffffffffffffffffffffffffff
23:14:48 :: [Bitcoin] # Subtest: entropy ← 0000000000000000000000000000000000000000000000000000000000000000
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 9 - entropy ← 0000000000000000000000000000000000000000000000000000000000000000
23:14:48 :: [Bitcoin] # Subtest: entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 10 - entropy ← 7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f
23:14:48 :: [Bitcoin] # Subtest: entropy ← 8080808080808080808080808080808080808080808080808080808080808080
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 11 - entropy ← 8080808080808080808080808080808080808080808080808080808080808080
23:14:48 :: [Bitcoin] # Subtest: entropy ← ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 12 - entropy ← ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
23:14:48 :: [Bitcoin] # Subtest: entropy ← 9e885d952ad362caeb4efe34a8e91bd2
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 13 - entropy ← 9e885d952ad362caeb4efe34a8e91bd2
23:14:48 :: [Bitcoin] # Subtest: entropy ← 6610b25967cdcca9d59875f5cb50b0ea75433311869e930b
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 14 - entropy ← 6610b25967cdcca9d59875f5cb50b0ea75433311869e930b
23:14:48 :: [Bitcoin] # Subtest: entropy ← 68a79eaca2324873eacc50cb9c6eca8cc68ea5d936f98787c60c7ebc74e6ce7c
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 15 - entropy ← 68a79eaca2324873eacc50cb9c6eca8cc68ea5d936f98787c60c7ebc74e6ce7c
23:14:48 :: [Bitcoin] # Subtest: entropy ← c0ba5a8e914111210f2bd131f3d5e08d
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 16 - entropy ← c0ba5a8e914111210f2bd131f3d5e08d
23:14:48 :: [Bitcoin] # Subtest: entropy ← 6d9be1ee6ebd27a258115aad99b7317b9c8d28b6d76431c3
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 17 - entropy ← 6d9be1ee6ebd27a258115aad99b7317b9c8d28b6d76431c3
23:14:48 :: [Bitcoin] # Subtest: entropy ← 9f6a2878b2520799a44ef18bc7df394e7061a224d2c33cd015b157d746869863
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 18 - entropy ← 9f6a2878b2520799a44ef18bc7df394e7061a224d2c33cd015b157d746869863
23:14:48 :: [Bitcoin] # Subtest: entropy ← 23db8160a31d3e0dca3688ed941adbf3
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 19 - entropy ← 23db8160a31d3e0dca3688ed941adbf3
23:14:48 :: [Bitcoin] # Subtest: entropy ← 8197a4a47f0425faeaa69deebc05ca29c0a5b5cc76ceacc0
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 20 - entropy ← 8197a4a47f0425faeaa69deebc05ca29c0a5b5cc76ceacc0
23:14:48 :: [Bitcoin] # Subtest: entropy ← 066dca1a2bb7e8a1db2832148ce9933eea0f3ac9548d793112d9a95c9407efad
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 21 - entropy ← 066dca1a2bb7e8a1db2832148ce9933eea0f3ac9548d793112d9a95c9407efad
23:14:48 :: [Bitcoin] # Subtest: entropy ← f30f8c1da665478f49b001d94c5fc452
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 22 - entropy ← f30f8c1da665478f49b001d94c5fc452
23:14:48 :: [Bitcoin] # Subtest: entropy ← c10ec20dc3cd9f652c7fac2f1230f7a3c828389a14392f05
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 23 - entropy ← c10ec20dc3cd9f652c7fac2f1230f7a3c828389a14392f05
23:14:48 :: [Bitcoin] # Subtest: entropy ← f585c11aec520db57dd353c69554b21a89b20fb0650966fa0a9d6f74fd989d8f
23:14:48 :: [Bitcoin]     ok 1 - entropy → mnemo
23:14:48 :: [Bitcoin]     not ok 2 - mnemo → seed
23:14:48 :: [Bitcoin]     ok 3 - seed → master key
23:14:48 :: [Bitcoin]     1..3
23:14:48 :: [Bitcoin] not ok 24 - entropy ← f585c11aec520db57dd353c69554b21a89b20fb0650966fa0a9d6f74fd989d8f
23:14:48 :: [Bitcoin] 1..24
23:14:48 :: [Bitcoin] Dubious, test returned 24 (wstat 6144, 0x1800)
23:14:48 :: [Bitcoin] Failed 24/24 subtests 
23:14:48 :: [Bitcoin] Test Summary Report
23:14:48 :: [Bitcoin] -------------------
23:14:48 :: [Bitcoin] t/bip39.t (Wstat: 6144 Tests: 24 Failed: 24)
23:14:48 :: [Bitcoin]   Failed tests:  1-24
23:14:48 :: [Bitcoin]   Non-zero exit status: 24
23:14:48 :: [Bitcoin] Files=3, Tests=34, 55 wallclock secs ( 0.08 usr  0.02 sys + 66.98 cusr  3.58 csys = 70.66 CPU)
23:14:48 :: [Bitcoin] Result: FAIL
23:14:48 :: ===> Testing [FAIL]: Bitcoin:ver<0.6.0>:auth<zef:grondilu>
[task stderr]
23:14:48 :: All candidates are currently installed
23:14:48 :: Aborting due to test failure: Bitcoin:ver<0.6.0>:auth<zef:grondilu> (use --force-test to override)
[task run: task.raku - tasks/multi-versions]
[dump code: task.raku]
[1] my @state;
[2] for config()<list><> -> $v {
[3]   my $s = %( version => $v );
[4]   if "{cache_root_dir()}/{$v}_ok".IO ~~ :e {
[5]     $s<status> = "OK";
[6]   } else {
[7]     $s<status> = "FAIL";
[8]   }
[9]   if "{cache_root_dir()}/{$v}_time".IO ~~ :e {
[10]     $s<time> = "{cache_root_dir()}/{$v}_time".IO.slurp();
[11]   } else {
[12]     $s<time> = "NA";
[13]   }
[14]   @state.push: $s;
[15] }
[16] update_state %( list => @state );
[17] 
[task stdout]
23:10:56 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[task run: task.bash - tasks/install-deps]
[dump code: task.bash]
[1] sudo apt-get install -y time 
[2] zef install --/test Text::Table::Simple
[3] 
[task stdout]
23:11:01 :: Reading package lists...
23:11:01 :: Building dependency tree...
23:11:01 :: Reading state information...
23:11:01 :: The following NEW packages will be installed:
23:11:01 ::   time
23:11:01 :: 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
23:11:01 :: Need to get 50.8 kB of archives.
23:11:01 :: After this operation, 132 kB of additional disk space will be used.
23:11:01 :: Get:1 http://deb.debian.org/debian bullseye/main amd64 time amd64 1.9-0.1 [50.8 kB]
23:11:02 :: Fetched 50.8 kB in 0s (2118 kB/s)
23:11:02 :: Selecting previously unselected package time.
23:11:02 :: (Reading database ... 
23:11:02 :: (Reading database ... 5%
23:11:02 :: (Reading database ... 10%
23:11:02 :: (Reading database ... 15%
23:11:02 :: (Reading database ... 20%
23:11:02 :: (Reading database ... 25%
23:11:02 :: (Reading database ... 30%
23:11:02 :: (Reading database ... 35%
23:11:02 :: (Reading database ... 40%
23:11:02 :: (Reading database ... 45%
23:11:02 :: (Reading database ... 50%
23:11:02 :: (Reading database ... 55%
23:11:02 :: (Reading database ... 60%
23:11:02 :: (Reading database ... 65%
23:11:02 :: (Reading database ... 70%
23:11:02 :: (Reading database ... 75%
23:11:02 :: (Reading database ... 80%
23:11:02 :: (Reading database ... 85%
23:11:02 :: (Reading database ... 90%
23:11:02 :: (Reading database ... 95%
23:11:02 :: (Reading database ... 100%
23:11:02 :: (Reading database ... 19016 files and directories currently installed.)
23:11:02 :: Preparing to unpack .../time_1.9-0.1_amd64.deb ...
23:11:02 :: Unpacking time (1.9-0.1) ...
23:11:02 :: Setting up time (1.9-0.1) ...
23:11:04 :: ===> Searching for: Text::Table::Simple
23:11:20 :: ===> Installing: Text::Table::Simple:ver<0.1.0>:auth<github:ugexe>
[task stderr]
23:11:20 :: debconf: delaying package configuration, since apt-utils is not installed
23:11:20 :: ===> Updating fez mirror: https://360.zef.pm/
23:11:20 :: ===> Updated fez mirror: https://360.zef.pm/
23:11:20 :: ===> Updating rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
23:11:20 :: ===> Updated rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json