view log » | |
_apply_patch | view log » |
qbe | view log » |
harec | view log » |
hare | view log » |
tests | view log » |
check | view log » |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
[#1063239] 2023/09/25 21:38:44 Booting image freebsd/latest (default) on port 22646 [#1063239] 2023/09/25 21:38:45 Waiting for guest to settle [#1063239] 2023/09/25 21:39:06 Sending tasks [#1063239] 2023/09/25 21:39:11 Sending build environment [#1063239] 2023/09/25 21:39:12 Installing packages Warning: Permanently added '[localhost]:22646' (ED25519) to the list of known hosts. Updating FreeBSD repository catalogue... Fetching packagesite.pkg: .......... done Processing entries: .......... done FreeBSD repository update completed. 34126 packages processed. All repositories are up to date. Updating FreeBSD repository catalogue... FreeBSD repository is up to date. All repositories are up to date. Checking for upgrades (3 candidates): ... done Processing candidates (3 candidates): ... done The following 2 package(s) will be affected (of 0 checked): Installed packages to be UPGRADED: curl: 8.2.1 -> 8.3.0 libnghttp2: 1.55.1_1 -> 1.56.0 Number of packages to be upgraded: 2 2 MiB to be downloaded. [1/2] Fetching libnghttp2-1.56.0.pkg: .......... done [2/2] Fetching curl-8.3.0.pkg: .......... done Checking integrity... done (0 conflicting) [1/2] Upgrading libnghttp2 from 1.55.1_1 to 1.56.0... [1/2] Extracting libnghttp2-1.56.0: .......... done [2/2] Upgrading curl from 8.2.1 to 8.3.0... [2/2] Extracting curl-8.3.0: .......... done Updating FreeBSD repository catalogue... FreeBSD repository is up to date. All repositories are up to date. The following 4 package(s) will be affected (of 0 checked): New packages to be INSTALLED: binutils: 2.40_4,1 liblz4: 1.9.4,1 scdoc: 1.11.2 zstd: 1.5.5 Number of packages to be installed: 4 The process will require 129 MiB more space. 12 MiB to be downloaded. [1/4] Fetching scdoc-1.11.2.pkg: .... done [2/4] Fetching liblz4-1.9.4,1.pkg: .......... done [3/4] Fetching zstd-1.5.5.pkg: .......... done [4/4] Fetching binutils-2.40_4,1.pkg: .......... done Checking integrity... done (0 conflicting) [1/4] Installing liblz4-1.9.4,1... [1/4] Extracting liblz4-1.9.4,1: .......... done [2/4] Installing zstd-1.5.5... [2/4] Extracting zstd-1.5.5: .......... done [3/4] Installing scdoc-1.11.2... [3/4] Extracting scdoc-1.11.2: ....... done [4/4] Installing binutils-2.40_4,1... [4/4] Extracting binutils-2.40_4,1: .......... done [#1063239] 2023/09/25 21:39:28 Cloning repositories Cloning into 'hare'... + cd hare + git submodule update --init --recursive Cloning into 'harec'... + cd harec + git submodule update --init --recursive Cloning into 'qbe'... + cd qbe + git submodule update --init --recursive [#1063239] 2023/09/25 21:39:37 Running task _apply_patch [#1063239] 2023/09/25 21:39:38 Running task qbe [#1063239] 2023/09/25 21:39:40 Running task harec [#1063239] 2023/09/25 21:39:43 Running task hare [#1063239] 2023/09/25 21:39:54 Running task tests [#1063239] 2023/09/25 21:40:07 Running task check [#1063239] 2023/09/25 21:40:10 Processing post-success triggers for job group... [#1063239] 2023/09/25 21:40:10 Sent build results email to Lennart Jablonka <humm@ljabl.com> [#1063239] 2023/09/25 21:40:10 Processing post-success triggers... [#1063239] 2023/09/25 21:40:10 Sending webhook... [#1063239] 2023/09/25 21:40:12 Webhook response: 200 [#1063239] 2023/09/25 21:40:12 Thanks! |
1 2 3 4 5 6 7 8 |
Applying patch from lists.sr.ht + echo Applying patch from lists.sr.ht + git config --global user.name builds.sr.ht + git config --global user.email builds@sr.ht + cd hare + curl -sS https://lists.sr.ht/~sircmpwn/hare-dev/patches/45034/mbox + git am -3 /tmp/45034.patch Applying: hare(1): drop duplicate reference to as(1) |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
+ cd qbe + make -j2 PREFIX=/usr --- config.h --- --- util.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c util.c -o util.o --- parse.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c parse.c -o parse.o --- abi.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c abi.c -o abi.o --- cfg.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c cfg.c -o cfg.o --- mem.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c mem.c -o mem.o --- ssa.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c ssa.c -o ssa.o --- alias.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c alias.c -o alias.o --- load.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c load.c -o load.o --- copy.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c copy.c -o copy.o --- fold.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c fold.c -o fold.o --- simpl.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c simpl.c -o simpl.o --- live.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c live.c -o live.o --- spill.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c spill.c -o spill.o --- rega.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c rega.c -o rega.o --- emit.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c emit.c -o emit.o --- amd64/targ.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c amd64/targ.c -o amd64/targ.o --- amd64/sysv.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c amd64/sysv.c -o amd64/sysv.o --- amd64/isel.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c amd64/isel.c -o amd64/isel.o --- amd64/emit.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c amd64/emit.c -o amd64/emit.o --- arm64/targ.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c arm64/targ.c -o arm64/targ.o --- arm64/abi.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c arm64/abi.c -o arm64/abi.o --- arm64/isel.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c arm64/isel.c -o arm64/isel.o --- arm64/emit.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c arm64/emit.c -o arm64/emit.o --- rv64/targ.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c rv64/targ.c -o rv64/targ.o --- rv64/abi.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c rv64/abi.c -o rv64/abi.o --- rv64/isel.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c rv64/isel.c -o rv64/isel.o --- rv64/emit.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c rv64/emit.c -o rv64/emit.o --- main.o --- cc -std=c99 -g -Wall -Wextra -Wpedantic -c main.c -o main.o --- qbe --- cc main.o util.o parse.o abi.o cfg.o mem.o ssa.o alias.o load.o copy.o fold.o simpl.o live.o spill.o rega.o emit.o amd64/targ.o amd64/sysv.o amd64/isel.o amd64/emit.o arm64/targ.o arm64/abi.o arm64/isel.o arm64/emit.o rv64/targ.o rv64/abi.o rv64/isel.o rv64/emit.o -o qbe + sudo make install PREFIX=/usr mkdir -p "/usr/bin" install -m755 qbe "/usr/bin/qbe" |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
+ mkdir harec/build + cd harec/build + ../configure --prefix=/usr Checking for -g... yes Checking for -std=c11... yes Checking for -D_XOPEN_SOURCE=700... yes Checking for -Wall... yes Checking for -Wextra... yes Checking for -Werror... yes Checking for -pedantic... yes Checking for -Wno-unused-parameter... yes Detecting machine architecture... x86_64 Checking for qbe... yes Creating .build/config.mk... done Populating build dir... done + make -j2 --- src/check.o --- --- src/emit.o --- --- src/check.o --- CC src/check.o --- src/emit.o --- CC src/emit.o --- src/eval.o --- CC src/eval.o --- src/gen.o --- CC src/gen.o --- src/genutil.o --- CC src/genutil.o --- src/identifier.o --- CC src/identifier.o --- src/lex.o --- CC src/lex.o --- src/main.o --- CC src/main.o --- src/mod.o --- CC src/mod.o --- src/parse.o --- CC src/parse.o --- src/qbe.o --- CC src/qbe.o --- src/qinstr.o --- CC src/qinstr.o --- src/qtype.o --- CC src/qtype.o --- src/scope.o --- CC src/scope.o --- src/type_store.o --- CC src/type_store.o --- src/typedef.o --- CC src/typedef.o --- src/types.o --- CC src/types.o --- src/utf8.o --- CC src/utf8.o --- src/util.o --- CC src/util.o --- rt/+freebsd/syscall+x86_64.o --- AS rt/+freebsd/syscall+x86_64.o --- rt/+freebsd/start+x86_64.o --- --- harec --- --- rt/+freebsd/start+x86_64.o --- AS rt/+freebsd/start+x86_64.o --- harec --- CCLD harec --- libhart.a --- HAREC libhart.a + sudo make install mkdir -p /usr/bin install -m755 harec /usr/bin/harec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 |
+ cd hare + sed -e s/linux/freebsd/g + make -j2 --- .cache/rt/rt-freebsd.ssa --- --- .cache/rt/syscall.o --- --- .cache/rt/rt-freebsd.ssa --- HAREC .cache/rt/rt-freebsd.ssa --- .cache/rt/syscall.o --- AS .cache/rt/syscall.o --- .cache/rt/setjmp.o --- AS .cache/rt/setjmp.o --- .cache/rt/longjmp.o --- AS .cache/rt/longjmp.o --- .cache/rt/restore.o --- AS .cache/rt/restore.o --- .cache/rt/getfp.o --- AS .cache/rt/getfp.o --- .cache/rt/fenv.o --- AS .cache/rt/fenv.o --- .cache/rt/start.o --- AS .cache/rt/start.o --- .cache/rt/cpuid.o --- AS .cache/rt/cpuid.o --- docs/hare.1 --- SCDOC docs/hare.1 --- docs/haredoc.1 --- SCDOC docs/haredoc.1 --- docs/hare-doc.5 --- SCDOC docs/hare-doc.5 --- .cache/rt/rt-freebsd.s --- QBE .cache/rt/rt-freebsd.s --- .cache/rt/rt-freebsd.o --- AS .cache/rt/rt-freebsd.o --- .cache/rt/rt-freebsd.a --- AR .cache/rt/rt-freebsd.a --- .cache/crypto/math/crypto_math-any.ssa --- --- .cache/endian/endian-any.ssa --- HAREC .cache/endian/endian-any.ssa --- .cache/crypto/math/crypto_math-any.ssa --- HAREC .cache/crypto/math/crypto_math-any.ssa --- .cache/errors/errors-any.ssa --- HAREC .cache/errors/errors-any.ssa --- .cache/format/elf/format_elf-any.ssa --- HAREC .cache/format/elf/format_elf-any.ssa --- .cache/math/random/math_random-any.ssa --- HAREC .cache/math/random/math_random-any.ssa --- .cache/test/test-any.ssa --- --- .cache/types/types-any.ssa --- --- .cache/test/test-any.ssa --- HAREC .cache/test/test-any.ssa --- .cache/types/types-any.ssa --- HAREC .cache/types/types-any.ssa --- .cache/endian/endian-any.s --- QBE .cache/endian/endian-any.s --- .cache/crypto/math/crypto_math-any.s --- QBE .cache/crypto/math/crypto_math-any.s --- .cache/errors/errors-any.s --- QBE .cache/errors/errors-any.s --- .cache/format/elf/format_elf-any.s --- QBE .cache/format/elf/format_elf-any.s --- .cache/math/random/math_random-any.s --- QBE .cache/math/random/math_random-any.s --- .cache/types/types-any.s --- QBE .cache/types/types-any.s --- .cache/test/test-any.s --- QBE .cache/test/test-any.s --- .cache/endian/endian-any.o --- AS .cache/endian/endian-any.o --- .cache/errors/errors-any.o --- AS .cache/errors/errors-any.o --- .cache/format/elf/format_elf-any.o --- AS .cache/format/elf/format_elf-any.o --- .cache/crypto/math/crypto_math-any.o --- AS .cache/crypto/math/crypto_math-any.o --- .cache/math/random/math_random-any.o --- AS .cache/math/random/math_random-any.o --- .cache/types/types-any.o --- AS .cache/types/types-any.o --- .cache/test/test-any.o --- AS .cache/test/test-any.o --- .cache/bytes/bytes-any.ssa --- HAREC .cache/bytes/bytes-any.ssa --- .cache/encoding/utf8/encoding_utf8-any.ssa --- HAREC .cache/encoding/utf8/encoding_utf8-any.ssa --- .cache/math/math-any.ssa --- HAREC .cache/math/math-any.ssa --- .cache/encoding/utf8/encoding_utf8-any.s --- QBE .cache/encoding/utf8/encoding_utf8-any.s --- .cache/bytes/bytes-any.s --- QBE .cache/bytes/bytes-any.s --- .cache/encoding/utf8/encoding_utf8-any.o --- AS .cache/encoding/utf8/encoding_utf8-any.o --- .cache/bytes/bytes-any.o --- AS .cache/bytes/bytes-any.o --- .cache/math/math-any.s --- QBE .cache/math/math-any.s --- .cache/types/c/types_c-any.ssa --- HAREC .cache/types/c/types_c-any.ssa --- .cache/crypto/bigint/crypto_bigint-any.ssa --- HAREC .cache/crypto/bigint/crypto_bigint-any.ssa --- .cache/crypto/curve25519/crypto_curve25519-any.ssa --- HAREC .cache/crypto/curve25519/crypto_curve25519-any.ssa --- .cache/io/io-freebsd.ssa --- HAREC .cache/io/io-freebsd.ssa --- .cache/strings/strings-any.ssa --- HAREC .cache/strings/strings-any.ssa --- .cache/types/c/types_c-any.s --- QBE .cache/types/c/types_c-any.s --- .cache/crypto/bigint/crypto_bigint-any.s --- QBE .cache/crypto/bigint/crypto_bigint-any.s --- .cache/crypto/curve25519/crypto_curve25519-any.s --- QBE .cache/crypto/curve25519/crypto_curve25519-any.s --- .cache/math/math-any.o --- AS .cache/math/math-any.o --- .cache/io/io-freebsd.s --- --- .cache/strings/strings-any.s --- --- .cache/io/io-freebsd.s --- QBE .cache/io/io-freebsd.s --- .cache/strings/strings-any.s --- QBE .cache/strings/strings-any.s --- .cache/types/c/types_c-any.o --- AS .cache/types/c/types_c-any.o --- .cache/crypto/curve25519/crypto_curve25519-any.o --- AS .cache/crypto/curve25519/crypto_curve25519-any.o --- .cache/math/checked/math_checked-any.ssa --- HAREC .cache/math/checked/math_checked-any.ssa --- .cache/math/complex/math_complex-any.ssa --- HAREC .cache/math/complex/math_complex-any.ssa --- .cache/time/time-freebsd.ssa --- HAREC .cache/time/time-freebsd.ssa --- .cache/crypto/bigint/crypto_bigint-any.o --- AS .cache/crypto/bigint/crypto_bigint-any.o --- .cache/io/io-freebsd.o --- AS .cache/io/io-freebsd.o --- .cache/strings/strings-any.o --- AS .cache/strings/strings-any.o --- .cache/crypto/x25519/crypto_x25519-any.ssa --- HAREC .cache/crypto/x25519/crypto_x25519-any.ssa --- .cache/math/checked/math_checked-any.s --- QBE .cache/math/checked/math_checked-any.s --- .cache/math/complex/math_complex-any.s --- QBE .cache/math/complex/math_complex-any.s --- .cache/time/time-freebsd.s --- QBE .cache/time/time-freebsd.s --- .cache/crypto/cipher/crypto_cipher-any.ssa --- HAREC .cache/crypto/cipher/crypto_cipher-any.ssa --- .cache/crypto/mac/crypto_mac-any.ssa --- HAREC .cache/crypto/mac/crypto_mac-any.ssa --- .cache/crypto/random/crypto_random-freebsd.ssa --- HAREC .cache/crypto/random/crypto_random-freebsd.ssa --- .cache/unix/signal/unix_signal-freebsd.ssa --- HAREC .cache/unix/signal/unix_signal-freebsd.ssa --- .cache/crypto/x25519/crypto_x25519-any.s --- QBE .cache/crypto/x25519/crypto_x25519-any.s --- .cache/ascii/ascii-any.ssa --- HAREC .cache/ascii/ascii-any.ssa --- .cache/bufio/bufio-any.ssa --- HAREC .cache/bufio/bufio-any.ssa --- .cache/memio/memio-any.ssa --- HAREC .cache/memio/memio-any.ssa --- .cache/path/path-any.ssa --- HAREC .cache/path/path-any.ssa --- .cache/sort/sort-any.ssa --- HAREC .cache/sort/sort-any.ssa --- .cache/sort/cmp/sort_cmp-any.ssa --- HAREC .cache/sort/cmp/sort_cmp-any.ssa --- .cache/math/checked/math_checked-any.o --- AS .cache/math/checked/math_checked-any.o --- .cache/time/time-freebsd.o --- AS .cache/time/time-freebsd.o --- .cache/math/complex/math_complex-any.o --- AS .cache/math/complex/math_complex-any.o --- .cache/crypto/cipher/crypto_cipher-any.s --- QBE .cache/crypto/cipher/crypto_cipher-any.s --- .cache/crypto/mac/crypto_mac-any.s --- QBE .cache/crypto/mac/crypto_mac-any.s --- .cache/crypto/random/crypto_random-freebsd.s --- QBE .cache/crypto/random/crypto_random-freebsd.s --- .cache/crypto/x25519/crypto_x25519-any.o --- AS .cache/crypto/x25519/crypto_x25519-any.o --- .cache/unix/signal/unix_signal-freebsd.s --- QBE .cache/unix/signal/unix_signal-freebsd.s --- .cache/ascii/ascii-any.s --- QBE .cache/ascii/ascii-any.s --- .cache/bufio/bufio-any.s --- QBE .cache/bufio/bufio-any.s --- .cache/memio/memio-any.s --- QBE .cache/memio/memio-any.s --- .cache/sort/sort-any.s --- QBE .cache/sort/sort-any.s --- .cache/path/path-any.s --- QBE .cache/path/path-any.s --- .cache/sort/cmp/sort_cmp-any.s --- QBE .cache/sort/cmp/sort_cmp-any.s --- .cache/unix/poll/unix_poll-freebsd.ssa --- HAREC .cache/unix/poll/unix_poll-freebsd.ssa --- .cache/crypto/mac/crypto_mac-any.o --- AS .cache/crypto/mac/crypto_mac-any.o --- .cache/crypto/random/crypto_random-freebsd.o --- AS .cache/crypto/random/crypto_random-freebsd.o --- .cache/unix/signal/unix_signal-freebsd.o --- AS .cache/unix/signal/unix_signal-freebsd.o --- .cache/crypto/cipher/crypto_cipher-any.o --- AS .cache/crypto/cipher/crypto_cipher-any.o --- .cache/ascii/ascii-any.o --- AS .cache/ascii/ascii-any.o --- .cache/memio/memio-any.o --- AS .cache/memio/memio-any.o --- .cache/bufio/bufio-any.o --- AS .cache/bufio/bufio-any.o --- .cache/sort/sort-any.o --- AS .cache/sort/sort-any.o --- .cache/sort/cmp/sort_cmp-any.o --- AS .cache/sort/cmp/sort_cmp-any.o --- .cache/unix/poll/unix_poll-freebsd.s --- QBE .cache/unix/poll/unix_poll-freebsd.s --- .cache/crypto/poly1305/crypto_poly1305-any.ssa --- HAREC .cache/crypto/poly1305/crypto_poly1305-any.ssa --- .cache/path/path-any.o --- AS .cache/path/path-any.o --- .cache/strconv/strconv-any.ssa --- HAREC .cache/strconv/strconv-any.ssa --- .cache/crypto/aes/crypto_aes-any.ssa --- HAREC .cache/crypto/aes/crypto_aes-any.ssa --- .cache/crypto/blowfish/crypto_blowfish-any.ssa --- HAREC .cache/crypto/blowfish/crypto_blowfish-any.ssa --- .cache/crypto/chacha/crypto_chacha-any.ssa --- HAREC .cache/crypto/chacha/crypto_chacha-any.ssa --- .cache/crypto/salsa/crypto_salsa-any.ssa --- HAREC .cache/crypto/salsa/crypto_salsa-any.ssa --- .cache/shlex/shlex-any.ssa --- HAREC .cache/shlex/shlex-any.ssa --- .cache/fnmatch/fnmatch-any.ssa --- HAREC .cache/fnmatch/fnmatch-any.ssa --- .cache/unix/poll/unix_poll-freebsd.o --- AS .cache/unix/poll/unix_poll-freebsd.o --- .cache/crypto/poly1305/crypto_poly1305-any.s --- QBE .cache/crypto/poly1305/crypto_poly1305-any.s --- .cache/fs/fs-any.ssa --- HAREC .cache/fs/fs-any.ssa --- .cache/crypto/aes/crypto_aes-any.s --- QBE .cache/crypto/aes/crypto_aes-any.s --- .cache/strconv/strconv-any.s --- QBE .cache/strconv/strconv-any.s --- .cache/crypto/blowfish/crypto_blowfish-any.s --- QBE .cache/crypto/blowfish/crypto_blowfish-any.s --- .cache/crypto/chacha/crypto_chacha-any.s --- QBE .cache/crypto/chacha/crypto_chacha-any.s --- .cache/crypto/salsa/crypto_salsa-any.s --- QBE .cache/crypto/salsa/crypto_salsa-any.s --- .cache/shlex/shlex-any.s --- QBE .cache/shlex/shlex-any.s --- .cache/fnmatch/fnmatch-any.s --- QBE .cache/fnmatch/fnmatch-any.s --- .cache/crypto/poly1305/crypto_poly1305-any.o --- AS .cache/crypto/poly1305/crypto_poly1305-any.o --- .cache/fs/fs-any.s --- QBE .cache/fs/fs-any.s --- .cache/crypto/aes/crypto_aes-any.o --- AS .cache/crypto/aes/crypto_aes-any.o --- .cache/crypto/blowfish/crypto_blowfish-any.o --- AS .cache/crypto/blowfish/crypto_blowfish-any.o --- .cache/strconv/strconv-any.o --- AS .cache/strconv/strconv-any.o --- .cache/crypto/chacha/crypto_chacha-any.o --- AS .cache/crypto/chacha/crypto_chacha-any.o --- .cache/shlex/shlex-any.o --- AS .cache/shlex/shlex-any.o --- .cache/crypto/salsa/crypto_salsa-any.o --- --- .cache/fnmatch/fnmatch-any.o --- AS .cache/crypto/salsa/crypto_salsa-any.o AS .cache/fnmatch/fnmatch-any.o --- .cache/fs/fs-any.o --- AS .cache/fs/fs-any.o --- .cache/crypto/aes/xts/crypto_aes_xts-any.ssa --- HAREC .cache/crypto/aes/xts/crypto_aes_xts-any.ssa --- .cache/crypto/chachapoly/crypto_chachapoly-any.ssa --- HAREC .cache/crypto/chachapoly/crypto_chachapoly-any.ssa --- .cache/format/tar/format_tar-any.ssa --- HAREC .cache/format/tar/format_tar-any.ssa --- .cache/regex/regex-any.ssa --- HAREC .cache/regex/regex-any.ssa --- .cache/os/os-freebsd.ssa --- HAREC .cache/os/os-freebsd.ssa --- .cache/unix/unix-freebsd.ssa --- HAREC .cache/unix/unix-freebsd.ssa --- .cache/crypto/aes/xts/crypto_aes_xts-any.s --- QBE .cache/crypto/aes/xts/crypto_aes_xts-any.s --- .cache/crypto/chachapoly/crypto_chachapoly-any.s --- QBE .cache/crypto/chachapoly/crypto_chachapoly-any.s --- .cache/format/tar/format_tar-any.s --- QBE .cache/format/tar/format_tar-any.s --- .cache/regex/regex-any.s --- QBE .cache/regex/regex-any.s --- .cache/os/os-freebsd.s --- QBE .cache/os/os-freebsd.s --- .cache/crypto/aes/xts/crypto_aes_xts-any.o --- AS .cache/crypto/aes/xts/crypto_aes_xts-any.o --- .cache/unix/unix-freebsd.s --- QBE .cache/unix/unix-freebsd.s --- .cache/crypto/chachapoly/crypto_chachapoly-any.o --- AS .cache/crypto/chachapoly/crypto_chachapoly-any.o --- .cache/format/tar/format_tar-any.o --- AS .cache/format/tar/format_tar-any.o --- .cache/os/os-freebsd.o --- AS .cache/os/os-freebsd.o --- .cache/unix/unix-freebsd.o --- --- .cache/regex/regex-any.o --- --- .cache/unix/unix-freebsd.o --- AS .cache/unix/unix-freebsd.o --- .cache/regex/regex-any.o --- AS .cache/regex/regex-any.o --- .cache/encoding/base64/encoding_base64-any.ssa --- HAREC .cache/encoding/base64/encoding_base64-any.ssa --- .cache/encoding/base32/encoding_base32-any.ssa --- HAREC .cache/encoding/base32/encoding_base32-any.ssa --- .cache/fmt/fmt-any.ssa --- HAREC .cache/fmt/fmt-any.ssa --- .cache/glob/glob-any.ssa --- HAREC .cache/glob/glob-any.ssa --- .cache/unix/passwd/unix_passwd-any.ssa --- HAREC .cache/unix/passwd/unix_passwd-any.ssa --- .cache/encoding/base64/encoding_base64-any.s --- QBE .cache/encoding/base64/encoding_base64-any.s --- .cache/encoding/base32/encoding_base32-any.s --- QBE .cache/encoding/base32/encoding_base32-any.s --- .cache/fmt/fmt-any.s --- QBE .cache/fmt/fmt-any.s --- .cache/glob/glob-any.s --- QBE .cache/glob/glob-any.s --- .cache/unix/passwd/unix_passwd-any.s --- QBE .cache/unix/passwd/unix_passwd-any.s --- .cache/encoding/base64/encoding_base64-any.o --- AS .cache/encoding/base64/encoding_base64-any.o --- .cache/encoding/base32/encoding_base32-any.o --- AS .cache/encoding/base32/encoding_base32-any.o --- .cache/fmt/fmt-any.o --- AS .cache/fmt/fmt-any.o --- .cache/glob/glob-any.o --- AS .cache/glob/glob-any.o --- .cache/unix/passwd/unix_passwd-any.o --- AS .cache/unix/passwd/unix_passwd-any.o --- .cache/dirs/dirs-any.ssa --- HAREC .cache/dirs/dirs-any.ssa --- .cache/encoding/hex/encoding_hex-any.ssa --- HAREC .cache/encoding/hex/encoding_hex-any.ssa --- .cache/encoding/pem/encoding_pem-any.ssa --- HAREC .cache/encoding/pem/encoding_pem-any.ssa --- .cache/format/ini/format_ini-any.ssa --- HAREC .cache/format/ini/format_ini-any.ssa --- .cache/getopt/getopt-any.ssa --- HAREC .cache/getopt/getopt-any.ssa --- .cache/hare/lex/hare_lex-any.ssa --- HAREC .cache/hare/lex/hare_lex-any.ssa --- .cache/hash/hash-any.ssa --- HAREC .cache/hash/hash-any.ssa --- .cache/net/net-freebsd.ssa --- HAREC .cache/net/net-freebsd.ssa --- .cache/net/ip/net_ip-freebsd.ssa --- HAREC .cache/net/ip/net_ip-freebsd.ssa --- .cache/os/exec/os_exec-freebsd.ssa --- HAREC .cache/os/exec/os_exec-freebsd.ssa --- .cache/strings/template/strings_template-any.ssa --- HAREC .cache/strings/template/strings_template-any.ssa --- .cache/time/chrono/time_chrono-freebsd.ssa --- HAREC .cache/time/chrono/time_chrono-freebsd.ssa --- .cache/unix/tty/unix_tty-freebsd.ssa --- HAREC .cache/unix/tty/unix_tty-freebsd.ssa --- .cache/uuid/uuid-any.ssa --- HAREC .cache/uuid/uuid-any.ssa --- .cache/dirs/dirs-any.s --- QBE .cache/dirs/dirs-any.s --- .cache/encoding/hex/encoding_hex-any.s --- QBE .cache/encoding/hex/encoding_hex-any.s --- .cache/encoding/pem/encoding_pem-any.s --- QBE .cache/encoding/pem/encoding_pem-any.s --- .cache/format/ini/format_ini-any.s --- QBE .cache/format/ini/format_ini-any.s --- .cache/getopt/getopt-any.s --- QBE .cache/getopt/getopt-any.s --- .cache/hash/hash-any.s --- QBE .cache/hash/hash-any.s --- .cache/hare/lex/hare_lex-any.s --- QBE .cache/hare/lex/hare_lex-any.s --- .cache/net/net-freebsd.s --- QBE .cache/net/net-freebsd.s --- .cache/net/ip/net_ip-freebsd.s --- QBE .cache/net/ip/net_ip-freebsd.s --- .cache/os/exec/os_exec-freebsd.s --- QBE .cache/os/exec/os_exec-freebsd.s --- .cache/strings/template/strings_template-any.s --- QBE .cache/strings/template/strings_template-any.s --- .cache/time/chrono/time_chrono-freebsd.s --- QBE .cache/time/chrono/time_chrono-freebsd.s --- .cache/unix/tty/unix_tty-freebsd.s --- QBE .cache/unix/tty/unix_tty-freebsd.s --- .cache/dirs/dirs-any.o --- AS .cache/dirs/dirs-any.o --- .cache/uuid/uuid-any.s --- QBE .cache/uuid/uuid-any.s --- .cache/encoding/hex/encoding_hex-any.o --- AS .cache/encoding/hex/encoding_hex-any.o --- .cache/format/ini/format_ini-any.o --- AS .cache/format/ini/format_ini-any.o --- .cache/encoding/pem/encoding_pem-any.o --- AS .cache/encoding/pem/encoding_pem-any.o --- .cache/hash/hash-any.o --- AS .cache/hash/hash-any.o --- .cache/getopt/getopt-any.o --- AS .cache/getopt/getopt-any.o --- .cache/net/net-freebsd.o --- AS .cache/net/net-freebsd.o --- .cache/net/ip/net_ip-freebsd.o --- AS .cache/net/ip/net_ip-freebsd.o --- .cache/os/exec/os_exec-freebsd.o --- AS .cache/os/exec/os_exec-freebsd.o --- .cache/strings/template/strings_template-any.o --- AS .cache/strings/template/strings_template-any.o --- .cache/hare/lex/hare_lex-any.o --- AS .cache/hare/lex/hare_lex-any.o --- .cache/unix/tty/unix_tty-freebsd.o --- AS .cache/unix/tty/unix_tty-freebsd.o --- .cache/uuid/uuid-any.o --- AS .cache/uuid/uuid-any.o --- .cache/temp/temp-freebsd.ssa --- HAREC .cache/temp/temp-freebsd.ssa --- .cache/crypto/blake2b/crypto_blake2b-any.ssa --- HAREC .cache/crypto/blake2b/crypto_blake2b-any.ssa --- .cache/crypto/sha1/crypto_sha1-any.ssa --- HAREC .cache/crypto/sha1/crypto_sha1-any.ssa --- .cache/crypto/sha256/crypto_sha256-any.ssa --- HAREC .cache/crypto/sha256/crypto_sha256-any.ssa --- .cache/crypto/sha512/crypto_sha512-any.ssa --- HAREC .cache/crypto/sha512/crypto_sha512-any.ssa --- .cache/hash/adler32/hash_adler32-any.ssa --- HAREC .cache/hash/adler32/hash_adler32-any.ssa --- .cache/hash/crc16/hash_crc16-any.ssa --- HAREC .cache/hash/crc16/hash_crc16-any.ssa --- .cache/hash/crc32/hash_crc32-any.ssa --- HAREC .cache/hash/crc32/hash_crc32-any.ssa --- .cache/hash/crc64/hash_crc64-any.ssa --- HAREC .cache/hash/crc64/hash_crc64-any.ssa --- .cache/hash/fnv/hash_fnv-any.ssa --- HAREC .cache/hash/fnv/hash_fnv-any.ssa --- .cache/hash/siphash/hash_siphash-any.ssa --- HAREC .cache/hash/siphash/hash_siphash-any.ssa --- .cache/time/chrono/time_chrono-freebsd.o --- AS .cache/time/chrono/time_chrono-freebsd.o --- .cache/net/tcp/net_tcp-freebsd.ssa --- HAREC .cache/net/tcp/net_tcp-freebsd.ssa --- .cache/net/udp/net_udp-freebsd.ssa --- HAREC .cache/net/udp/net_udp-freebsd.ssa --- .cache/net/uri/net_uri-any.ssa --- HAREC .cache/net/uri/net_uri-any.ssa --- .cache/unix/hosts/unix_hosts-freebsd.ssa --- HAREC .cache/unix/hosts/unix_hosts-freebsd.ssa --- .cache/unix/resolvconf/unix_resolvconf-freebsd.ssa --- HAREC .cache/unix/resolvconf/unix_resolvconf-freebsd.ssa --- .cache/hare/ast/hare_ast-any.ssa --- HAREC .cache/hare/ast/hare_ast-any.ssa --- .cache/temp/temp-freebsd.s --- QBE .cache/temp/temp-freebsd.s --- .cache/crypto/blake2b/crypto_blake2b-any.s --- QBE .cache/crypto/blake2b/crypto_blake2b-any.s --- .cache/crypto/sha1/crypto_sha1-any.s --- QBE .cache/crypto/sha1/crypto_sha1-any.s --- .cache/crypto/sha256/crypto_sha256-any.s --- QBE .cache/crypto/sha256/crypto_sha256-any.s --- .cache/crypto/sha512/crypto_sha512-any.s --- QBE .cache/crypto/sha512/crypto_sha512-any.s --- .cache/hash/adler32/hash_adler32-any.s --- QBE .cache/hash/adler32/hash_adler32-any.s --- .cache/hash/crc16/hash_crc16-any.s --- QBE .cache/hash/crc16/hash_crc16-any.s --- .cache/hash/crc32/hash_crc32-any.s --- --- .cache/hash/crc64/hash_crc64-any.s --- QBE .cache/hash/crc32/hash_crc32-any.s QBE .cache/hash/crc64/hash_crc64-any.s --- .cache/hash/fnv/hash_fnv-any.s --- --- .cache/hash/siphash/hash_siphash-any.s --- --- .cache/hash/fnv/hash_fnv-any.s --- QBE .cache/hash/fnv/hash_fnv-any.s --- .cache/hash/siphash/hash_siphash-any.s --- QBE .cache/hash/siphash/hash_siphash-any.s --- .cache/time/date/time_date-freebsd.ssa --- HAREC .cache/time/date/time_date-freebsd.ssa --- .cache/net/tcp/net_tcp-freebsd.s --- QBE .cache/net/tcp/net_tcp-freebsd.s --- .cache/net/udp/net_udp-freebsd.s --- QBE .cache/net/udp/net_udp-freebsd.s --- .cache/net/uri/net_uri-any.s --- QBE .cache/net/uri/net_uri-any.s --- .cache/unix/hosts/unix_hosts-freebsd.s --- QBE .cache/unix/hosts/unix_hosts-freebsd.s --- .cache/unix/resolvconf/unix_resolvconf-freebsd.s --- QBE .cache/unix/resolvconf/unix_resolvconf-freebsd.s --- .cache/temp/temp-freebsd.o --- AS .cache/temp/temp-freebsd.o --- .cache/hare/ast/hare_ast-any.s --- QBE .cache/hare/ast/hare_ast-any.s --- .cache/crypto/blake2b/crypto_blake2b-any.o --- AS .cache/crypto/blake2b/crypto_blake2b-any.o --- .cache/crypto/sha1/crypto_sha1-any.o --- AS .cache/crypto/sha1/crypto_sha1-any.o --- .cache/crypto/sha256/crypto_sha256-any.o --- AS .cache/crypto/sha256/crypto_sha256-any.o --- .cache/hash/adler32/hash_adler32-any.o --- AS .cache/hash/adler32/hash_adler32-any.o --- .cache/hash/crc16/hash_crc16-any.o --- AS .cache/hash/crc16/hash_crc16-any.o --- .cache/crypto/sha512/crypto_sha512-any.o --- AS .cache/crypto/sha512/crypto_sha512-any.o --- .cache/hash/crc32/hash_crc32-any.o --- --- .cache/hash/crc64/hash_crc64-any.o --- --- .cache/hash/crc32/hash_crc32-any.o --- AS .cache/hash/crc32/hash_crc32-any.o --- .cache/hash/crc64/hash_crc64-any.o --- AS .cache/hash/crc64/hash_crc64-any.o --- .cache/hash/fnv/hash_fnv-any.o --- --- .cache/hash/siphash/hash_siphash-any.o --- --- .cache/hash/fnv/hash_fnv-any.o --- AS .cache/hash/fnv/hash_fnv-any.o --- .cache/hash/siphash/hash_siphash-any.o --- AS .cache/hash/siphash/hash_siphash-any.o --- .cache/net/tcp/net_tcp-freebsd.o --- AS .cache/net/tcp/net_tcp-freebsd.o --- .cache/net/udp/net_udp-freebsd.o --- AS .cache/net/udp/net_udp-freebsd.o --- .cache/net/uri/net_uri-any.o --- AS .cache/net/uri/net_uri-any.o --- .cache/time/date/time_date-freebsd.s --- QBE .cache/time/date/time_date-freebsd.s --- .cache/unix/resolvconf/unix_resolvconf-freebsd.o --- AS .cache/unix/resolvconf/unix_resolvconf-freebsd.o --- .cache/unix/hosts/unix_hosts-freebsd.o --- AS .cache/unix/hosts/unix_hosts-freebsd.o --- .cache/crypto/argon2/crypto_argon2-any.ssa --- HAREC .cache/crypto/argon2/crypto_argon2-any.ssa --- .cache/crypto/hmac/crypto_hmac-any.ssa --- HAREC .cache/crypto/hmac/crypto_hmac-any.ssa --- .cache/hare/ast/hare_ast-any.o --- AS .cache/hare/ast/hare_ast-any.o --- .cache/crypto/rsa/crypto_rsa-any.ssa --- HAREC .cache/crypto/rsa/crypto_rsa-any.ssa --- .cache/crypto/ed25519/crypto_ed25519-any.ssa --- HAREC .cache/crypto/ed25519/crypto_ed25519-any.ssa --- .cache/net/dns/net_dns-any.ssa --- HAREC .cache/net/dns/net_dns-any.ssa --- .cache/crypto/argon2/crypto_argon2-any.s --- QBE .cache/crypto/argon2/crypto_argon2-any.s --- .cache/crypto/hmac/crypto_hmac-any.s --- QBE .cache/crypto/hmac/crypto_hmac-any.s --- .cache/time/date/time_date-freebsd.o --- AS .cache/time/date/time_date-freebsd.o --- .cache/hare/parse/hare_parse-any.ssa --- HAREC .cache/hare/parse/hare_parse-any.ssa --- .cache/hare/types/hare_types-any.ssa --- HAREC .cache/hare/types/hare_types-any.ssa --- .cache/hare/unparse/hare_unparse-any.ssa --- HAREC .cache/hare/unparse/hare_unparse-any.ssa --- .cache/crypto/rsa/crypto_rsa-any.s --- QBE .cache/crypto/rsa/crypto_rsa-any.s --- .cache/crypto/ed25519/crypto_ed25519-any.s --- QBE .cache/crypto/ed25519/crypto_ed25519-any.s --- .cache/crypto/argon2/crypto_argon2-any.o --- AS .cache/crypto/argon2/crypto_argon2-any.o --- .cache/crypto/hmac/crypto_hmac-any.o --- AS .cache/crypto/hmac/crypto_hmac-any.o --- .cache/net/dns/net_dns-any.s --- QBE .cache/net/dns/net_dns-any.s --- .cache/log/log-freebsd.ssa --- HAREC .cache/log/log-freebsd.ssa --- .cache/hare/types/hare_types-any.s --- QBE .cache/hare/types/hare_types-any.s --- .cache/hare/parse/hare_parse-any.s --- QBE .cache/hare/parse/hare_parse-any.s --- .cache/crypto/rsa/crypto_rsa-any.o --- AS .cache/crypto/rsa/crypto_rsa-any.o --- .cache/hare/unparse/hare_unparse-any.s --- QBE .cache/hare/unparse/hare_unparse-any.s --- .cache/crypto/ed25519/crypto_ed25519-any.o --- AS .cache/crypto/ed25519/crypto_ed25519-any.o --- .cache/crypto/crypto-any.ssa --- HAREC .cache/crypto/crypto-any.ssa --- .cache/crypto/hkdf/crypto_hkdf-any.ssa --- HAREC .cache/crypto/hkdf/crypto_hkdf-any.ssa --- .cache/log/log-freebsd.s --- QBE .cache/log/log-freebsd.s --- .cache/hare/types/hare_types-any.o --- AS .cache/hare/types/hare_types-any.o --- .cache/net/dns/net_dns-any.o --- AS .cache/net/dns/net_dns-any.o --- .cache/hare/parse/hare_parse-any.o --- AS .cache/hare/parse/hare_parse-any.o --- .cache/crypto/crypto-any.s --- QBE .cache/crypto/crypto-any.s --- .cache/crypto/hkdf/crypto_hkdf-any.s --- QBE .cache/crypto/hkdf/crypto_hkdf-any.s --- .cache/log/log-freebsd.o --- AS .cache/log/log-freebsd.o --- .cache/hare/unit/hare_unit-any.ssa --- HAREC .cache/hare/unit/hare_unit-any.ssa --- .cache/net/dial/net_dial-any.ssa --- HAREC .cache/net/dial/net_dial-any.ssa --- .cache/hare/parse/doc/hare_parse_doc-any.ssa --- HAREC .cache/hare/parse/doc/hare_parse_doc-any.ssa --- .cache/crypto/crypto-any.o --- AS .cache/crypto/crypto-any.o --- .cache/crypto/hkdf/crypto_hkdf-any.o --- AS .cache/crypto/hkdf/crypto_hkdf-any.o --- .cache/hare/unit/hare_unit-any.s --- QBE .cache/hare/unit/hare_unit-any.s --- .cache/net/dial/net_dial-any.s --- QBE .cache/net/dial/net_dial-any.s --- .cache/hare/unparse/hare_unparse-any.o --- AS .cache/hare/unparse/hare_unparse-any.o --- .cache/crypto/bcrypt/crypto_bcrypt-any.ssa --- HAREC .cache/crypto/bcrypt/crypto_bcrypt-any.ssa --- .cache/hare/parse/doc/hare_parse_doc-any.s --- QBE .cache/hare/parse/doc/hare_parse_doc-any.s --- .cache/net/dial/net_dial-any.o --- AS .cache/net/dial/net_dial-any.o --- .cache/hare/unit/hare_unit-any.o --- AS .cache/hare/unit/hare_unit-any.o --- .cache/crypto/bcrypt/crypto_bcrypt-any.s --- QBE .cache/crypto/bcrypt/crypto_bcrypt-any.s --- .cache/hare/parse/doc/hare_parse_doc-any.o --- AS .cache/hare/parse/doc/hare_parse_doc-any.o --- .cache/net/unix/net_unix-freebsd.ssa --- HAREC .cache/net/unix/net_unix-freebsd.ssa --- .cache/crypto/bcrypt/crypto_bcrypt-any.o --- AS .cache/crypto/bcrypt/crypto_bcrypt-any.o --- .cache/hare/module/hare_module-any.ssa --- HAREC .cache/hare/module/hare_module-any.ssa --- .cache/net/unix/net_unix-freebsd.s --- QBE .cache/net/unix/net_unix-freebsd.s --- .cache/net/unix/net_unix-freebsd.o --- AS .cache/net/unix/net_unix-freebsd.o --- .cache/hare/module/hare_module-any.s --- QBE .cache/hare/module/hare_module-any.s --- .cache/hare/module/hare_module-any.o --- AS .cache/hare/module/hare_module-any.o --- .cache/cmd/hare/build/cmd_hare_build-any.ssa --- HAREC .cache/cmd/hare/build/cmd_hare_build-any.ssa --- .cache/cmd/hare/build/cmd_hare_build-any.s --- QBE .cache/cmd/hare/build/cmd_hare_build-any.s --- .cache/cmd/hare/build/cmd_hare_build-any.o --- AS .cache/cmd/hare/build/cmd_hare_build-any.o --- .cache/hare.ssa --- HAREC .cache/hare.ssa --- .cache/hare.s --- QBE .cache/hare.s --- .cache/hare.o --- AS .cache/hare.o --- .bin/hare --- LD .bin/hare --- .bin/harec2 --- --- .bin/haredoc --- --- .bin/harec2 --- HARE .bin/harec2 --- .bin/haredoc --- HARE .bin/haredoc + sudo make install mkdir -p /usr/local/bin /usr/local/share/man/man1 /usr/local/bin /usr/local/share/man/man5 /usr/local/src/hare/stdlib install -m755 .bin/hare /usr/local/bin/hare install -m755 .bin/haredoc /usr/local/bin/haredoc install -m644 docs/hare.1 /usr/local/share/man/man1/hare.1 install -m644 docs/haredoc.1 /usr/local/share/man/man1/haredoc.1 install -m644 docs/hare-doc.5 /usr/local/share/man/man5/hare-doc.5 ./scripts/install-mods "/usr/local/src/hare/stdlib" install ascii install bufio install bytes install crypto install dirs install encoding install endian install errors install fmt install fnmatch install format install fs install getopt install glob install hare install hash install io install linux install log install math install memio install mime install net install os install path install regex install rt install shlex install sort install strconv install strings install temp install test install time install types install unix install uuid |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 |
+ cd hare + make -j2 .bin/hare-tests --- .cache/+test/rt/rt-freebsd.ssa --- --- .cache/+test/rt/syscall.o --- HAREC .cache/+test/rt/rt-freebsd.ssa AS .cache/+test/rt/syscall.o --- .cache/+test/rt/setjmp.o --- AS .cache/+test/rt/setjmp.o --- .cache/+test/rt/longjmp.o --- AS .cache/+test/rt/longjmp.o --- .cache/+test/rt/restore.o --- AS .cache/+test/rt/restore.o --- .cache/+test/rt/getfp.o --- AS .cache/+test/rt/getfp.o --- .cache/+test/rt/fenv.o --- AS .cache/+test/rt/fenv.o --- .cache/+test/rt/start.o --- AS .cache/+test/rt/start.o --- .cache/+test/rt/cpuid.o --- AS .cache/+test/rt/cpuid.o --- .cache/+test/rt/rt-freebsd.s --- QBE .cache/+test/rt/rt-freebsd.s --- .cache/+test/rt/rt-freebsd.o --- AS .cache/+test/rt/rt-freebsd.o --- .cache/+test/rt/rt-freebsd.a --- AR .cache/+test/rt/rt-freebsd.a --- .cache/+test/crypto/math/crypto_math-any.ssa --- --- .cache/+test/endian/endian-any.ssa --- HAREC .cache/+test/endian/endian-any.ssa --- .cache/+test/crypto/math/crypto_math-any.ssa --- HAREC .cache/+test/crypto/math/crypto_math-any.ssa --- .cache/+test/errors/errors-any.ssa --- HAREC .cache/+test/errors/errors-any.ssa --- .cache/+test/format/elf/format_elf-any.ssa --- HAREC .cache/+test/format/elf/format_elf-any.ssa --- .cache/+test/math/random/math_random-any.ssa --- HAREC .cache/+test/math/random/math_random-any.ssa --- .cache/+test/types/types-any.ssa --- --- .cache/+test/endian/endian-any.s --- --- .cache/+test/types/types-any.ssa --- HAREC .cache/+test/types/types-any.ssa --- .cache/+test/endian/endian-any.s --- QBE .cache/+test/endian/endian-any.s --- .cache/+test/crypto/math/crypto_math-any.s --- QBE .cache/+test/crypto/math/crypto_math-any.s --- .cache/+test/errors/errors-any.s --- QBE .cache/+test/errors/errors-any.s --- .cache/+test/math/random/math_random-any.s --- QBE .cache/+test/math/random/math_random-any.s --- .cache/+test/format/elf/format_elf-any.s --- QBE .cache/+test/format/elf/format_elf-any.s --- .cache/+test/types/types-any.s --- QBE .cache/+test/types/types-any.s --- .cache/+test/crypto/math/crypto_math-any.o --- AS .cache/+test/crypto/math/crypto_math-any.o --- .cache/+test/errors/errors-any.o --- AS .cache/+test/errors/errors-any.o --- .cache/+test/math/random/math_random-any.o --- AS .cache/+test/math/random/math_random-any.o --- .cache/+test/format/elf/format_elf-any.o --- AS .cache/+test/format/elf/format_elf-any.o --- .cache/+test/types/types-any.o --- AS .cache/+test/types/types-any.o --- .cache/+test/endian/endian-any.o --- AS .cache/+test/endian/endian-any.o --- .cache/+test/bytes/bytes-any.ssa --- HAREC .cache/+test/bytes/bytes-any.ssa --- .cache/+test/encoding/utf8/encoding_utf8-any.ssa --- HAREC .cache/+test/encoding/utf8/encoding_utf8-any.ssa --- .cache/+test/math/math-any.ssa --- HAREC .cache/+test/math/math-any.ssa --- .cache/+test/encoding/utf8/encoding_utf8-any.s --- QBE .cache/+test/encoding/utf8/encoding_utf8-any.s --- .cache/+test/bytes/bytes-any.s --- QBE .cache/+test/bytes/bytes-any.s --- .cache/+test/encoding/utf8/encoding_utf8-any.o --- AS .cache/+test/encoding/utf8/encoding_utf8-any.o --- .cache/+test/math/math-any.s --- QBE .cache/+test/math/math-any.s --- .cache/+test/types/c/types_c-any.ssa --- HAREC .cache/+test/types/c/types_c-any.ssa --- .cache/+test/bytes/bytes-any.o --- AS .cache/+test/bytes/bytes-any.o --- .cache/+test/types/c/types_c-any.s --- QBE .cache/+test/types/c/types_c-any.s --- .cache/+test/io/io-freebsd.ssa --- HAREC .cache/+test/io/io-freebsd.ssa --- .cache/+test/strings/strings-any.ssa --- HAREC .cache/+test/strings/strings-any.ssa --- .cache/+test/types/c/types_c-any.o --- AS .cache/+test/types/c/types_c-any.o --- .cache/+test/io/io-freebsd.s --- QBE .cache/+test/io/io-freebsd.s --- .cache/+test/strings/strings-any.s --- QBE .cache/+test/strings/strings-any.s --- .cache/+test/math/math-any.o --- AS .cache/+test/math/math-any.o --- .cache/+test/io/io-freebsd.o --- AS .cache/+test/io/io-freebsd.o --- .cache/+test/math/checked/math_checked-any.ssa --- HAREC .cache/+test/math/checked/math_checked-any.ssa --- .cache/+test/math/complex/math_complex-any.ssa --- HAREC .cache/+test/math/complex/math_complex-any.ssa --- .cache/+test/time/time-freebsd.ssa --- HAREC .cache/+test/time/time-freebsd.ssa --- .cache/+test/strings/strings-any.o --- AS .cache/+test/strings/strings-any.o --- .cache/+test/crypto/cipher/crypto_cipher-any.ssa --- HAREC .cache/+test/crypto/cipher/crypto_cipher-any.ssa --- .cache/+test/crypto/mac/crypto_mac-any.ssa --- HAREC .cache/+test/crypto/mac/crypto_mac-any.ssa --- .cache/+test/crypto/random/crypto_random-freebsd.ssa --- HAREC .cache/+test/crypto/random/crypto_random-freebsd.ssa --- .cache/+test/unix/signal/unix_signal-freebsd.ssa --- HAREC .cache/+test/unix/signal/unix_signal-freebsd.ssa --- .cache/+test/math/checked/math_checked-any.s --- QBE .cache/+test/math/checked/math_checked-any.s --- .cache/+test/time/time-freebsd.s --- QBE .cache/+test/time/time-freebsd.s --- .cache/+test/math/complex/math_complex-any.s --- QBE .cache/+test/math/complex/math_complex-any.s --- .cache/+test/crypto/cipher/crypto_cipher-any.s --- QBE .cache/+test/crypto/cipher/crypto_cipher-any.s --- .cache/+test/ascii/ascii-any.ssa --- HAREC .cache/+test/ascii/ascii-any.ssa --- .cache/+test/memio/memio-any.ssa --- HAREC .cache/+test/memio/memio-any.ssa --- .cache/+test/path/path-any.ssa --- HAREC .cache/+test/path/path-any.ssa --- .cache/+test/sort/cmp/sort_cmp-any.ssa --- HAREC .cache/+test/sort/cmp/sort_cmp-any.ssa --- .cache/+test/crypto/mac/crypto_mac-any.s --- QBE .cache/+test/crypto/mac/crypto_mac-any.s --- .cache/+test/crypto/random/crypto_random-freebsd.s --- QBE .cache/+test/crypto/random/crypto_random-freebsd.s --- .cache/+test/unix/signal/unix_signal-freebsd.s --- QBE .cache/+test/unix/signal/unix_signal-freebsd.s --- .cache/+test/math/checked/math_checked-any.o --- AS .cache/+test/math/checked/math_checked-any.o --- .cache/+test/time/time-freebsd.o --- AS .cache/+test/time/time-freebsd.o --- .cache/+test/crypto/cipher/crypto_cipher-any.o --- AS .cache/+test/crypto/cipher/crypto_cipher-any.o --- .cache/+test/ascii/ascii-any.s --- QBE .cache/+test/ascii/ascii-any.s --- .cache/+test/math/complex/math_complex-any.o --- --- .cache/+test/memio/memio-any.s --- AS .cache/+test/math/complex/math_complex-any.o QBE .cache/+test/memio/memio-any.s --- .cache/+test/path/path-any.s --- QBE .cache/+test/path/path-any.s --- .cache/+test/crypto/mac/crypto_mac-any.o --- AS .cache/+test/crypto/mac/crypto_mac-any.o --- .cache/+test/sort/cmp/sort_cmp-any.s --- QBE .cache/+test/sort/cmp/sort_cmp-any.s --- .cache/+test/crypto/random/crypto_random-freebsd.o --- AS .cache/+test/crypto/random/crypto_random-freebsd.o --- .cache/+test/unix/signal/unix_signal-freebsd.o --- AS .cache/+test/unix/signal/unix_signal-freebsd.o --- .cache/+test/unix/poll/unix_poll-freebsd.ssa --- HAREC .cache/+test/unix/poll/unix_poll-freebsd.ssa --- .cache/+test/ascii/ascii-any.o --- AS .cache/+test/ascii/ascii-any.o --- .cache/+test/crypto/blowfish/crypto_blowfish-any.ssa --- HAREC .cache/+test/crypto/blowfish/crypto_blowfish-any.ssa --- .cache/+test/memio/memio-any.o --- AS .cache/+test/memio/memio-any.o --- .cache/+test/sort/cmp/sort_cmp-any.o --- AS .cache/+test/sort/cmp/sort_cmp-any.o --- .cache/+test/unix/poll/unix_poll-freebsd.s --- QBE .cache/+test/unix/poll/unix_poll-freebsd.s --- .cache/+test/strconv/strconv-any.ssa --- --- .cache/+test/path/path-any.o --- --- .cache/+test/strconv/strconv-any.ssa --- HAREC .cache/+test/strconv/strconv-any.ssa --- .cache/+test/path/path-any.o --- AS .cache/+test/path/path-any.o --- .cache/+test/crypto/blowfish/crypto_blowfish-any.s --- QBE .cache/+test/crypto/blowfish/crypto_blowfish-any.s --- .cache/+test/sort/sort-any.ssa --- HAREC .cache/+test/sort/sort-any.ssa --- .cache/+test/unix/poll/unix_poll-freebsd.o --- AS .cache/+test/unix/poll/unix_poll-freebsd.o --- .cache/+test/bufio/bufio-any.ssa --- HAREC .cache/+test/bufio/bufio-any.ssa --- .cache/+test/crypto/aes/crypto_aes-any.ssa --- HAREC .cache/+test/crypto/aes/crypto_aes-any.ssa --- .cache/+test/crypto/chacha/crypto_chacha-any.ssa --- HAREC .cache/+test/crypto/chacha/crypto_chacha-any.ssa --- .cache/+test/crypto/salsa/crypto_salsa-any.ssa --- HAREC .cache/+test/crypto/salsa/crypto_salsa-any.ssa --- .cache/+test/shlex/shlex-any.ssa --- HAREC .cache/+test/shlex/shlex-any.ssa --- .cache/+test/fs/fs-any.ssa --- HAREC .cache/+test/fs/fs-any.ssa --- .cache/+test/strconv/strconv-any.s --- QBE .cache/+test/strconv/strconv-any.s --- .cache/+test/sort/sort-any.s --- QBE .cache/+test/sort/sort-any.s --- .cache/+test/crypto/blowfish/crypto_blowfish-any.o --- AS .cache/+test/crypto/blowfish/crypto_blowfish-any.o --- .cache/+test/bufio/bufio-any.s --- QBE .cache/+test/bufio/bufio-any.s --- .cache/+test/crypto/chacha/crypto_chacha-any.s --- QBE .cache/+test/crypto/chacha/crypto_chacha-any.s --- .cache/+test/crypto/aes/crypto_aes-any.s --- QBE .cache/+test/crypto/aes/crypto_aes-any.s --- .cache/+test/crypto/salsa/crypto_salsa-any.s --- QBE .cache/+test/crypto/salsa/crypto_salsa-any.s --- .cache/+test/shlex/shlex-any.s --- QBE .cache/+test/shlex/shlex-any.s --- .cache/+test/fs/fs-any.s --- QBE .cache/+test/fs/fs-any.s --- .cache/+test/sort/sort-any.o --- AS .cache/+test/sort/sort-any.o --- .cache/+test/strconv/strconv-any.o --- AS .cache/+test/strconv/strconv-any.o --- .cache/+test/bufio/bufio-any.o --- AS .cache/+test/bufio/bufio-any.o --- .cache/+test/crypto/chacha/crypto_chacha-any.o --- AS .cache/+test/crypto/chacha/crypto_chacha-any.o --- .cache/+test/crypto/salsa/crypto_salsa-any.o --- AS .cache/+test/crypto/salsa/crypto_salsa-any.o --- .cache/+test/shlex/shlex-any.o --- AS .cache/+test/shlex/shlex-any.o --- .cache/+test/crypto/aes/crypto_aes-any.o --- AS .cache/+test/crypto/aes/crypto_aes-any.o --- .cache/+test/fs/fs-any.o --- AS .cache/+test/fs/fs-any.o --- .cache/+test/fnmatch/fnmatch-any.ssa --- HAREC .cache/+test/fnmatch/fnmatch-any.ssa --- .cache/+test/format/tar/format_tar-any.ssa --- HAREC .cache/+test/format/tar/format_tar-any.ssa --- .cache/+test/os/os-freebsd.ssa --- HAREC .cache/+test/os/os-freebsd.ssa --- .cache/+test/unix/unix-freebsd.ssa --- HAREC .cache/+test/unix/unix-freebsd.ssa --- .cache/+test/fnmatch/fnmatch-any.s --- QBE .cache/+test/fnmatch/fnmatch-any.s --- .cache/+test/crypto/aes/xts/crypto_aes_xts-any.ssa --- HAREC .cache/+test/crypto/aes/xts/crypto_aes_xts-any.ssa --- .cache/+test/format/tar/format_tar-any.s --- QBE .cache/+test/format/tar/format_tar-any.s --- .cache/+test/os/os-freebsd.s --- QBE .cache/+test/os/os-freebsd.s --- .cache/+test/unix/unix-freebsd.s --- QBE .cache/+test/unix/unix-freebsd.s --- .cache/+test/fnmatch/fnmatch-any.o --- AS .cache/+test/fnmatch/fnmatch-any.o --- .cache/+test/crypto/aes/xts/crypto_aes_xts-any.s --- QBE .cache/+test/crypto/aes/xts/crypto_aes_xts-any.s --- .cache/+test/format/tar/format_tar-any.o --- AS .cache/+test/format/tar/format_tar-any.o --- .cache/+test/unix/unix-freebsd.o --- AS .cache/+test/unix/unix-freebsd.o --- .cache/+test/os/os-freebsd.o --- AS .cache/+test/os/os-freebsd.o --- .cache/+test/crypto/aes/xts/crypto_aes_xts-any.o --- AS .cache/+test/crypto/aes/xts/crypto_aes_xts-any.o --- .cache/+test/encoding/base64/encoding_base64-any.ssa --- --- .cache/+test/encoding/base32/encoding_base32-any.ssa --- --- .cache/+test/encoding/base64/encoding_base64-any.ssa --- HAREC .cache/+test/encoding/base64/encoding_base64-any.ssa --- .cache/+test/encoding/base32/encoding_base32-any.ssa --- HAREC .cache/+test/encoding/base32/encoding_base32-any.ssa --- .cache/+test/fmt/fmt-any.ssa --- --- .cache/+test/glob/glob-any.ssa --- HAREC .cache/+test/fmt/fmt-any.ssa HAREC .cache/+test/glob/glob-any.ssa --- .cache/+test/unix/passwd/unix_passwd-any.ssa --- HAREC .cache/+test/unix/passwd/unix_passwd-any.ssa --- .cache/+test/encoding/base32/encoding_base32-any.s --- QBE .cache/+test/encoding/base32/encoding_base32-any.s --- .cache/+test/encoding/base64/encoding_base64-any.s --- QBE .cache/+test/encoding/base64/encoding_base64-any.s --- .cache/+test/glob/glob-any.s --- QBE .cache/+test/glob/glob-any.s --- .cache/+test/fmt/fmt-any.s --- QBE .cache/+test/fmt/fmt-any.s --- .cache/+test/unix/passwd/unix_passwd-any.s --- QBE .cache/+test/unix/passwd/unix_passwd-any.s --- .cache/+test/encoding/base32/encoding_base32-any.o --- AS .cache/+test/encoding/base32/encoding_base32-any.o --- .cache/+test/encoding/base64/encoding_base64-any.o --- AS .cache/+test/encoding/base64/encoding_base64-any.o --- .cache/+test/glob/glob-any.o --- AS .cache/+test/glob/glob-any.o --- .cache/+test/unix/passwd/unix_passwd-any.o --- AS .cache/+test/unix/passwd/unix_passwd-any.o --- .cache/+test/fmt/fmt-any.o --- AS .cache/+test/fmt/fmt-any.o --- .cache/+test/dirs/dirs-any.ssa --- --- .cache/+test/encoding/hex/encoding_hex-any.ssa --- --- .cache/+test/dirs/dirs-any.ssa --- HAREC .cache/+test/dirs/dirs-any.ssa --- .cache/+test/encoding/hex/encoding_hex-any.ssa --- HAREC .cache/+test/encoding/hex/encoding_hex-any.ssa --- .cache/+test/encoding/pem/encoding_pem-any.ssa --- --- .cache/+test/format/ini/format_ini-any.ssa --- --- .cache/+test/encoding/pem/encoding_pem-any.ssa --- HAREC .cache/+test/encoding/pem/encoding_pem-any.ssa --- .cache/+test/format/ini/format_ini-any.ssa --- HAREC .cache/+test/format/ini/format_ini-any.ssa --- .cache/+test/getopt/getopt-any.ssa --- HAREC .cache/+test/getopt/getopt-any.ssa --- .cache/+test/hare/lex/hare_lex-any.ssa --- HAREC .cache/+test/hare/lex/hare_lex-any.ssa --- .cache/+test/hash/hash-any.ssa --- HAREC .cache/+test/hash/hash-any.ssa --- .cache/+test/net/net-freebsd.ssa --- HAREC .cache/+test/net/net-freebsd.ssa --- .cache/+test/net/ip/net_ip-freebsd.ssa --- HAREC .cache/+test/net/ip/net_ip-freebsd.ssa --- .cache/+test/os/exec/os_exec-freebsd.ssa --- HAREC .cache/+test/os/exec/os_exec-freebsd.ssa --- .cache/+test/regex/regex-any.ssa --- HAREC .cache/+test/regex/regex-any.ssa --- .cache/+test/strings/template/strings_template-any.ssa --- HAREC .cache/+test/strings/template/strings_template-any.ssa --- .cache/+test/time/chrono/time_chrono-freebsd.ssa --- HAREC .cache/+test/time/chrono/time_chrono-freebsd.ssa --- .cache/+test/unix/tty/unix_tty-freebsd.ssa --- HAREC .cache/+test/unix/tty/unix_tty-freebsd.ssa --- .cache/+test/uuid/uuid-any.ssa --- HAREC .cache/+test/uuid/uuid-any.ssa --- .cache/+test/dirs/dirs-any.s --- QBE .cache/+test/dirs/dirs-any.s --- .cache/+test/encoding/hex/encoding_hex-any.s --- QBE .cache/+test/encoding/hex/encoding_hex-any.s --- .cache/+test/format/ini/format_ini-any.s --- QBE .cache/+test/format/ini/format_ini-any.s --- .cache/+test/encoding/pem/encoding_pem-any.s --- QBE .cache/+test/encoding/pem/encoding_pem-any.s --- .cache/+test/getopt/getopt-any.s --- QBE .cache/+test/getopt/getopt-any.s --- .cache/+test/hash/hash-any.s --- QBE .cache/+test/hash/hash-any.s --- .cache/+test/hare/lex/hare_lex-any.s --- QBE .cache/+test/hare/lex/hare_lex-any.s --- .cache/+test/net/net-freebsd.s --- QBE .cache/+test/net/net-freebsd.s --- .cache/+test/net/ip/net_ip-freebsd.s --- QBE .cache/+test/net/ip/net_ip-freebsd.s --- .cache/+test/os/exec/os_exec-freebsd.s --- QBE .cache/+test/os/exec/os_exec-freebsd.s --- .cache/+test/strings/template/strings_template-any.s --- QBE .cache/+test/strings/template/strings_template-any.s --- .cache/+test/regex/regex-any.s --- QBE .cache/+test/regex/regex-any.s --- .cache/+test/time/chrono/time_chrono-freebsd.s --- QBE .cache/+test/time/chrono/time_chrono-freebsd.s --- .cache/+test/unix/tty/unix_tty-freebsd.s --- QBE .cache/+test/unix/tty/unix_tty-freebsd.s --- .cache/+test/dirs/dirs-any.o --- AS .cache/+test/dirs/dirs-any.o --- .cache/+test/uuid/uuid-any.s --- QBE .cache/+test/uuid/uuid-any.s --- .cache/+test/encoding/hex/encoding_hex-any.o --- AS .cache/+test/encoding/hex/encoding_hex-any.o --- .cache/+test/format/ini/format_ini-any.o --- AS .cache/+test/format/ini/format_ini-any.o --- .cache/+test/encoding/pem/encoding_pem-any.o --- AS .cache/+test/encoding/pem/encoding_pem-any.o --- .cache/+test/hash/hash-any.o --- AS .cache/+test/hash/hash-any.o --- .cache/+test/getopt/getopt-any.o --- AS .cache/+test/getopt/getopt-any.o --- .cache/+test/net/net-freebsd.o --- AS .cache/+test/net/net-freebsd.o --- .cache/+test/net/ip/net_ip-freebsd.o --- AS .cache/+test/net/ip/net_ip-freebsd.o --- .cache/+test/os/exec/os_exec-freebsd.o --- AS .cache/+test/os/exec/os_exec-freebsd.o --- .cache/+test/strings/template/strings_template-any.o --- AS .cache/+test/strings/template/strings_template-any.o --- .cache/+test/hare/lex/hare_lex-any.o --- AS .cache/+test/hare/lex/hare_lex-any.o --- .cache/+test/time/chrono/time_chrono-freebsd.o --- AS .cache/+test/time/chrono/time_chrono-freebsd.o --- .cache/+test/unix/tty/unix_tty-freebsd.o --- AS .cache/+test/unix/tty/unix_tty-freebsd.o --- .cache/+test/uuid/uuid-any.o --- AS .cache/+test/uuid/uuid-any.o --- .cache/+test/crypto/bigint/crypto_bigint-any.ssa --- HAREC .cache/+test/crypto/bigint/crypto_bigint-any.ssa --- .cache/+test/crypto/poly1305/crypto_poly1305-any.ssa --- HAREC .cache/+test/crypto/poly1305/crypto_poly1305-any.ssa --- .cache/+test/crypto/curve25519/crypto_curve25519-any.ssa --- HAREC .cache/+test/crypto/curve25519/crypto_curve25519-any.ssa --- .cache/+test/temp/temp-freebsd.ssa --- HAREC .cache/+test/temp/temp-freebsd.ssa --- .cache/+test/test/test-any.ssa --- HAREC .cache/+test/test/test-any.ssa --- .cache/+test/crypto/blake2b/crypto_blake2b-any.ssa --- HAREC .cache/+test/crypto/blake2b/crypto_blake2b-any.ssa --- .cache/+test/crypto/sha1/crypto_sha1-any.ssa --- HAREC .cache/+test/crypto/sha1/crypto_sha1-any.ssa --- .cache/+test/crypto/sha256/crypto_sha256-any.ssa --- HAREC .cache/+test/crypto/sha256/crypto_sha256-any.ssa --- .cache/+test/crypto/sha512/crypto_sha512-any.ssa --- HAREC .cache/+test/crypto/sha512/crypto_sha512-any.ssa --- .cache/+test/hash/adler32/hash_adler32-any.ssa --- HAREC .cache/+test/hash/adler32/hash_adler32-any.ssa --- .cache/+test/hash/crc16/hash_crc16-any.ssa --- HAREC .cache/+test/hash/crc16/hash_crc16-any.ssa --- .cache/+test/hash/crc32/hash_crc32-any.ssa --- HAREC .cache/+test/hash/crc32/hash_crc32-any.ssa --- .cache/+test/hash/crc64/hash_crc64-any.ssa --- HAREC .cache/+test/hash/crc64/hash_crc64-any.ssa --- .cache/+test/hash/fnv/hash_fnv-any.ssa --- HAREC .cache/+test/hash/fnv/hash_fnv-any.ssa --- .cache/+test/hash/siphash/hash_siphash-any.ssa --- HAREC .cache/+test/hash/siphash/hash_siphash-any.ssa --- .cache/+test/net/tcp/net_tcp-freebsd.ssa --- HAREC .cache/+test/net/tcp/net_tcp-freebsd.ssa --- .cache/+test/net/udp/net_udp-freebsd.ssa --- HAREC .cache/+test/net/udp/net_udp-freebsd.ssa --- .cache/+test/net/uri/net_uri-any.ssa --- HAREC .cache/+test/net/uri/net_uri-any.ssa --- .cache/+test/unix/hosts/unix_hosts-freebsd.ssa --- HAREC .cache/+test/unix/hosts/unix_hosts-freebsd.ssa --- .cache/+test/unix/resolvconf/unix_resolvconf-freebsd.ssa --- HAREC .cache/+test/unix/resolvconf/unix_resolvconf-freebsd.ssa --- .cache/+test/regex/regex-any.o --- AS .cache/+test/regex/regex-any.o --- .cache/+test/time/date/time_date-freebsd.ssa --- HAREC .cache/+test/time/date/time_date-freebsd.ssa --- .cache/+test/hare/ast/hare_ast-any.ssa --- HAREC .cache/+test/hare/ast/hare_ast-any.ssa --- .cache/+test/crypto/poly1305/crypto_poly1305-any.s --- QBE .cache/+test/crypto/poly1305/crypto_poly1305-any.s --- .cache/+test/crypto/bigint/crypto_bigint-any.s --- --- .cache/+test/temp/temp-freebsd.s --- --- .cache/+test/crypto/bigint/crypto_bigint-any.s --- QBE .cache/+test/crypto/bigint/crypto_bigint-any.s --- .cache/+test/temp/temp-freebsd.s --- QBE .cache/+test/temp/temp-freebsd.s --- .cache/+test/crypto/curve25519/crypto_curve25519-any.s --- QBE .cache/+test/crypto/curve25519/crypto_curve25519-any.s --- .cache/+test/test/test-any.s --- QBE .cache/+test/test/test-any.s --- .cache/+test/crypto/sha1/crypto_sha1-any.s --- QBE .cache/+test/crypto/sha1/crypto_sha1-any.s --- .cache/+test/crypto/blake2b/crypto_blake2b-any.s --- QBE .cache/+test/crypto/blake2b/crypto_blake2b-any.s --- .cache/+test/crypto/sha256/crypto_sha256-any.s --- QBE .cache/+test/crypto/sha256/crypto_sha256-any.s --- .cache/+test/crypto/sha512/crypto_sha512-any.s --- QBE .cache/+test/crypto/sha512/crypto_sha512-any.s --- .cache/+test/hash/adler32/hash_adler32-any.s --- QBE .cache/+test/hash/adler32/hash_adler32-any.s --- .cache/+test/hash/crc16/hash_crc16-any.s --- QBE .cache/+test/hash/crc16/hash_crc16-any.s --- .cache/+test/hash/crc32/hash_crc32-any.s --- QBE .cache/+test/hash/crc32/hash_crc32-any.s --- .cache/+test/hash/crc64/hash_crc64-any.s --- --- .cache/+test/hash/fnv/hash_fnv-any.s --- QBE .cache/+test/hash/crc64/hash_crc64-any.s QBE .cache/+test/hash/fnv/hash_fnv-any.s --- .cache/+test/hash/siphash/hash_siphash-any.s --- QBE .cache/+test/hash/siphash/hash_siphash-any.s --- .cache/+test/net/tcp/net_tcp-freebsd.s --- QBE .cache/+test/net/tcp/net_tcp-freebsd.s --- .cache/+test/net/udp/net_udp-freebsd.s --- QBE .cache/+test/net/udp/net_udp-freebsd.s --- .cache/+test/net/uri/net_uri-any.s --- QBE .cache/+test/net/uri/net_uri-any.s --- .cache/+test/unix/hosts/unix_hosts-freebsd.s --- QBE .cache/+test/unix/hosts/unix_hosts-freebsd.s --- .cache/+test/unix/resolvconf/unix_resolvconf-freebsd.s --- QBE .cache/+test/unix/resolvconf/unix_resolvconf-freebsd.s --- .cache/+test/time/date/time_date-freebsd.s --- QBE .cache/+test/time/date/time_date-freebsd.s --- .cache/+test/hare/ast/hare_ast-any.s --- QBE .cache/+test/hare/ast/hare_ast-any.s --- .cache/+test/crypto/poly1305/crypto_poly1305-any.o --- AS .cache/+test/crypto/poly1305/crypto_poly1305-any.o --- .cache/+test/temp/temp-freebsd.o --- AS .cache/+test/temp/temp-freebsd.o --- .cache/+test/crypto/curve25519/crypto_curve25519-any.o --- AS .cache/+test/crypto/curve25519/crypto_curve25519-any.o --- .cache/+test/crypto/bigint/crypto_bigint-any.o --- AS .cache/+test/crypto/bigint/crypto_bigint-any.o --- .cache/+test/crypto/sha1/crypto_sha1-any.o --- AS .cache/+test/crypto/sha1/crypto_sha1-any.o --- .cache/+test/test/test-any.o --- AS .cache/+test/test/test-any.o --- .cache/+test/crypto/sha256/crypto_sha256-any.o --- AS .cache/+test/crypto/sha256/crypto_sha256-any.o --- .cache/+test/crypto/blake2b/crypto_blake2b-any.o --- AS .cache/+test/crypto/blake2b/crypto_blake2b-any.o --- .cache/+test/crypto/sha512/crypto_sha512-any.o --- AS .cache/+test/crypto/sha512/crypto_sha512-any.o --- .cache/+test/hash/adler32/hash_adler32-any.o --- AS .cache/+test/hash/adler32/hash_adler32-any.o --- .cache/+test/hash/crc16/hash_crc16-any.o --- AS .cache/+test/hash/crc16/hash_crc16-any.o --- .cache/+test/hash/crc32/hash_crc32-any.o --- AS .cache/+test/hash/crc32/hash_crc32-any.o --- .cache/+test/hash/crc64/hash_crc64-any.o --- AS .cache/+test/hash/crc64/hash_crc64-any.o --- .cache/+test/hash/fnv/hash_fnv-any.o --- AS .cache/+test/hash/fnv/hash_fnv-any.o --- .cache/+test/hash/siphash/hash_siphash-any.o --- AS .cache/+test/hash/siphash/hash_siphash-any.o --- .cache/+test/net/tcp/net_tcp-freebsd.o --- AS .cache/+test/net/tcp/net_tcp-freebsd.o --- .cache/+test/net/udp/net_udp-freebsd.o --- AS .cache/+test/net/udp/net_udp-freebsd.o --- .cache/+test/unix/hosts/unix_hosts-freebsd.o --- AS .cache/+test/unix/hosts/unix_hosts-freebsd.o --- .cache/+test/unix/resolvconf/unix_resolvconf-freebsd.o --- AS .cache/+test/unix/resolvconf/unix_resolvconf-freebsd.o --- .cache/+test/net/uri/net_uri-any.o --- AS .cache/+test/net/uri/net_uri-any.o --- .cache/+test/hare/ast/hare_ast-any.o --- AS .cache/+test/hare/ast/hare_ast-any.o --- .cache/+test/crypto/chachapoly/crypto_chachapoly-any.ssa --- HAREC .cache/+test/crypto/chachapoly/crypto_chachapoly-any.ssa --- .cache/+test/crypto/x25519/crypto_x25519-any.ssa --- HAREC .cache/+test/crypto/x25519/crypto_x25519-any.ssa --- .cache/+test/crypto/hmac/crypto_hmac-any.ssa --- HAREC .cache/+test/crypto/hmac/crypto_hmac-any.ssa --- .cache/+test/crypto/argon2/crypto_argon2-any.ssa --- HAREC .cache/+test/crypto/argon2/crypto_argon2-any.ssa --- .cache/+test/crypto/rsa/crypto_rsa-any.ssa --- HAREC .cache/+test/crypto/rsa/crypto_rsa-any.ssa --- .cache/+test/crypto/ed25519/crypto_ed25519-any.ssa --- HAREC .cache/+test/crypto/ed25519/crypto_ed25519-any.ssa --- .cache/+test/time/date/time_date-freebsd.o --- AS .cache/+test/time/date/time_date-freebsd.o --- .cache/+test/net/dns/net_dns-any.ssa --- HAREC .cache/+test/net/dns/net_dns-any.ssa --- .cache/+test/hare/unparse/hare_unparse-any.ssa --- HAREC .cache/+test/hare/unparse/hare_unparse-any.ssa --- .cache/+test/crypto/chachapoly/crypto_chachapoly-any.s --- QBE .cache/+test/crypto/chachapoly/crypto_chachapoly-any.s --- .cache/+test/crypto/x25519/crypto_x25519-any.s --- QBE .cache/+test/crypto/x25519/crypto_x25519-any.s --- .cache/+test/crypto/hmac/crypto_hmac-any.s --- QBE .cache/+test/crypto/hmac/crypto_hmac-any.s --- .cache/+test/crypto/argon2/crypto_argon2-any.s --- QBE .cache/+test/crypto/argon2/crypto_argon2-any.s --- .cache/+test/crypto/ed25519/crypto_ed25519-any.s --- QBE .cache/+test/crypto/ed25519/crypto_ed25519-any.s --- .cache/+test/crypto/rsa/crypto_rsa-any.s --- QBE .cache/+test/crypto/rsa/crypto_rsa-any.s --- .cache/+test/net/dns/net_dns-any.s --- QBE .cache/+test/net/dns/net_dns-any.s --- .cache/+test/log/log-freebsd.ssa --- HAREC .cache/+test/log/log-freebsd.ssa --- .cache/+test/crypto/chachapoly/crypto_chachapoly-any.o --- AS .cache/+test/crypto/chachapoly/crypto_chachapoly-any.o --- .cache/+test/crypto/x25519/crypto_x25519-any.o --- AS .cache/+test/crypto/x25519/crypto_x25519-any.o --- .cache/+test/crypto/hmac/crypto_hmac-any.o --- AS .cache/+test/crypto/hmac/crypto_hmac-any.o --- .cache/+test/hare/unparse/hare_unparse-any.s --- QBE .cache/+test/hare/unparse/hare_unparse-any.s --- .cache/+test/crypto/argon2/crypto_argon2-any.o --- AS .cache/+test/crypto/argon2/crypto_argon2-any.o --- .cache/+test/crypto/ed25519/crypto_ed25519-any.o --- AS .cache/+test/crypto/ed25519/crypto_ed25519-any.o --- .cache/+test/crypto/rsa/crypto_rsa-any.o --- AS .cache/+test/crypto/rsa/crypto_rsa-any.o --- .cache/+test/log/log-freebsd.s --- QBE .cache/+test/log/log-freebsd.s --- .cache/+test/crypto/hkdf/crypto_hkdf-any.ssa --- HAREC .cache/+test/crypto/hkdf/crypto_hkdf-any.ssa --- .cache/+test/net/dns/net_dns-any.o --- AS .cache/+test/net/dns/net_dns-any.o --- .cache/+test/crypto/crypto-any.ssa --- HAREC .cache/+test/crypto/crypto-any.ssa --- .cache/+test/log/log-freebsd.o --- AS .cache/+test/log/log-freebsd.o --- .cache/+test/crypto/hkdf/crypto_hkdf-any.s --- QBE .cache/+test/crypto/hkdf/crypto_hkdf-any.s --- .cache/+test/net/dial/net_dial-any.ssa --- HAREC .cache/+test/net/dial/net_dial-any.ssa --- .cache/+test/crypto/crypto-any.s --- QBE .cache/+test/crypto/crypto-any.s --- .cache/+test/crypto/hkdf/crypto_hkdf-any.o --- AS .cache/+test/crypto/hkdf/crypto_hkdf-any.o --- .cache/+test/net/dial/net_dial-any.s --- QBE .cache/+test/net/dial/net_dial-any.s --- .cache/+test/crypto/crypto-any.o --- AS .cache/+test/crypto/crypto-any.o --- .cache/+test/net/dial/net_dial-any.o --- AS .cache/+test/net/dial/net_dial-any.o --- .cache/+test/crypto/bcrypt/crypto_bcrypt-any.ssa --- HAREC .cache/+test/crypto/bcrypt/crypto_bcrypt-any.ssa --- .cache/+test/net/unix/net_unix-freebsd.ssa --- HAREC .cache/+test/net/unix/net_unix-freebsd.ssa --- .cache/+test/crypto/bcrypt/crypto_bcrypt-any.s --- QBE .cache/+test/crypto/bcrypt/crypto_bcrypt-any.s --- .cache/+test/net/unix/net_unix-freebsd.s --- QBE .cache/+test/net/unix/net_unix-freebsd.s --- .cache/+test/crypto/bcrypt/crypto_bcrypt-any.o --- AS .cache/+test/crypto/bcrypt/crypto_bcrypt-any.o --- .cache/+test/net/unix/net_unix-freebsd.o --- AS .cache/+test/net/unix/net_unix-freebsd.o --- .cache/+test/hare/unparse/hare_unparse-any.o --- AS .cache/+test/hare/unparse/hare_unparse-any.o --- .cache/+test/hare/parse/hare_parse-any.ssa --- HAREC .cache/+test/hare/parse/hare_parse-any.ssa --- .cache/+test/hare/parse/hare_parse-any.s --- QBE .cache/+test/hare/parse/hare_parse-any.s --- .cache/+test/hare/parse/hare_parse-any.o --- AS .cache/+test/hare/parse/hare_parse-any.o --- .cache/+test/hare/module/hare_module-any.ssa --- --- .cache/+test/hare/parse/doc/hare_parse_doc-any.ssa --- --- .cache/+test/hare/module/hare_module-any.ssa --- HAREC .cache/+test/hare/module/hare_module-any.ssa --- .cache/+test/hare/parse/doc/hare_parse_doc-any.ssa --- HAREC .cache/+test/hare/parse/doc/hare_parse_doc-any.ssa --- .cache/+test/hare/types/hare_types-any.ssa --- HAREC .cache/+test/hare/types/hare_types-any.ssa --- .cache/+test/hare/parse/doc/hare_parse_doc-any.s --- QBE .cache/+test/hare/parse/doc/hare_parse_doc-any.s --- .cache/+test/hare/module/hare_module-any.s --- QBE .cache/+test/hare/module/hare_module-any.s --- .cache/+test/hare/parse/doc/hare_parse_doc-any.o --- AS .cache/+test/hare/parse/doc/hare_parse_doc-any.o --- .cache/+test/hare/types/hare_types-any.s --- QBE .cache/+test/hare/types/hare_types-any.s --- .cache/+test/hare/module/hare_module-any.o --- AS .cache/+test/hare/module/hare_module-any.o --- .cache/+test/cmd/hare/build/cmd_hare_build-any.ssa --- HAREC .cache/+test/cmd/hare/build/cmd_hare_build-any.ssa --- .cache/+test/cmd/hare/build/cmd_hare_build-any.s --- QBE .cache/+test/cmd/hare/build/cmd_hare_build-any.s --- .cache/+test/cmd/hare/build/cmd_hare_build-any.o --- AS .cache/+test/cmd/hare/build/cmd_hare_build-any.o --- .cache/+test/hare/types/hare_types-any.o --- AS .cache/+test/hare/types/hare_types-any.o --- .cache/+test/hare/unit/hare_unit-any.ssa --- HAREC .cache/+test/hare/unit/hare_unit-any.ssa --- .cache/+test/hare/unit/hare_unit-any.s --- QBE .cache/+test/hare/unit/hare_unit-any.s --- .cache/+test/hare/unit/hare_unit-any.o --- AS .cache/+test/hare/unit/hare_unit-any.o --- .cache/+test/hare.ssa --- HAREC .cache/+test/hare.ssa --- .cache/+test/hare.s --- QBE .cache/+test/hare.s --- .cache/+test/hare.o --- AS .cache/+test/hare.o --- .bin/hare-tests --- LD .bin/hare-tests |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 |
+ cd hare + make -j2 check --- check --- Running 466/466 tests: ascii::valid....................................PASS in 0.000020160s ascii::strcasecmp...............................PASS in 0.000027370s ascii::ctype....................................PASS in 0.000016360s rt::sigset_invalid_signum.......................PASS in 0.000012120s rt::sigset_valid_signum.........................PASS in 0.000013060s rt::unknown_errno...............................PASS in 0.000021980s bufio::scan_rune_cutoff.........................PASS in 0.000093880s bufio::scan_rune................................PASS in 0.000104380s bufio::read_rune................................PASS in 0.000020480s bufio::read_line................................PASS in 0.000022480s bufio::read_tok.................................PASS in 0.000017970s bufio::read_byte................................PASS in 0.000014510s bufio::unread...................................PASS in 0.000020760s bufio::write....................................PASS in 0.000055320s bufio::read.....................................PASS in 0.000043770s bytes::trim.....................................PASS in 0.000018000s bytes::cut......................................PASS in 0.000019770s bytes::tokenize.................................PASS in 0.000027350s bytes::reverse..................................PASS in 0.000015250s bytes::index....................................PASS in 0.000079650s bytes::equal....................................PASS in 0.000019900s bytes::hassuffix................................PASS in 0.000063910s bytes::hasprefix................................PASS in 0.000014870s crypto::invalidmac..............................PASS in 0.000061110s crypto::cipheradditionswap......................PASS in 0.000034110s crypto::invalidaddition5........................PASS in 0.000039700s crypto::invalidaddition4........................PASS in 0.000039430s crypto::invalidaddition3........................PASS in 0.000073500s crypto::invalidaddition2........................PASS in 0.000157440s crypto::invalidaddition.........................PASS in 0.000051000s crypto::invalidcipher3..........................PASS in 0.000091660s crypto::invalidcipher2..........................PASS in 0.000053940s crypto::invalidcipher...........................PASS in 0.000101230s crypto::invalidkey..............................PASS in 0.000041950s crypto::polyaligned.............................PASS in 0.000054780s crypto::nothing.................................PASS in 0.000095220s crypto::nomsg...................................PASS in 0.000060380s crypto::noadditional............................PASS in 0.000112700s crypto::rfcmultiadditonals......................PASS in 0.000078130s crypto::rfc.....................................PASS in 0.000116910s crypto::aes::gcm_inplace........................PASS in 0.001536850s crypto::aes::gcm_decrypt........................PASS in 0.001010620s crypto::aes::gcm_encrypt........................PASS in 0.000877690s crypto::aes::rt_example_vector3.................PASS in 0.000044700s crypto::aes::rt_example_vector2.................PASS in 0.000080290s crypto::aes::rt_example_vector1_in_place........PASS in 0.000040740s crypto::aes::rt_example_vector1.................PASS in 0.000030900s crypto::aes::rt_decrypt_128.....................PASS in 0.000025860s crypto::aes::rt_decrypt_128_multiple_blocks.....PASS in 0.000041600s crypto::aes::rt_encrypt_128_multiple_blocks.....PASS in 0.000037020s crypto::aes::rt_encrypt_128.....................PASS in 0.000025260s crypto::aes::rt_finish..........................PASS in 0.000036600s crypto::aes::ctr_test_retry.....................PASS in 0.000039800s crypto::aes::empty_write........................PASS in 0.000027120s crypto::aes::ctr_encrypt_smaller_buf............PASS in 0.000024760s crypto::aes::ctr_encrypt_in_place...............PASS in 0.000025670s crypto::aes::ctr_test_multiple_calls............PASS in 0.000046500s crypto::aes::ctr_test_multiple_blocks...........PASS in 0.000054080s crypto::aes::ctr_encrypt_max_iv.................PASS in 0.000026390s crypto::aes::ctr_zero_iv........................PASS in 0.000045720s crypto::aes::cbc_encrypt_decrypt_in_place.......PASS in 0.000060730s crypto::aes::cbc_encrypt_decrypt................PASS in 0.000061430s crypto::aes::test_example_vector3...............PASS in 0.000050390s crypto::aes::test_example_vector2...............PASS in 0.000037010s crypto::aes::test_example_vector1_in_place......PASS in 0.000043770s crypto::aes::test_example_vector1...............PASS in 0.000036350s crypto::aes::test_decrypt_128...................PASS in 0.000026030s crypto::aes::test_decrypt_128_multiple_blocks...PASS in 0.000040610s crypto::aes::test_encrypt_128_multiple_blocks...PASS in 0.000037150s crypto::aes::test_encrypt_128...................PASS in 0.000024200s crypto::aes::xts::multiblock....................PASS in 0.000122950s crypto::aes::xts::oneblock......................PASS in 0.000063550s crypto::argon2::samples.........................PASS in 0.041489090s crypto::argon2::rfc_id_test_vector..............PASS in 0.005279910s crypto::argon2::rfc_i_test_vector...............PASS in 0.004387840s crypto::argon2::rfc_d_test_vector...............PASS in 0.002557550s crypto::argon2::mode_d_one_pass.................PASS in 0.001737110s crypto::bcrypt::hash............................PASS in 0.171217770s crypto::bcrypt::bcrypt..........................PASS in 0.376215450s crypto::blake2b::blake2b_multiple_writes........PASS in 0.000017130s crypto::blake2b::blake2b........................PASS in 0.078209030s crypto::blowfish::salted........................PASS in 0.002295570s crypto::blowfish::decrypt.......................PASS in 0.002167240s crypto::blowfish::encrypt.......................PASS in 0.002136030s crypto::bigint::zero............................PASS in 0.000008070s crypto::bigint::iszero..........................PASS in 0.000053460s crypto::bigint::montymul........................PASS in 0.000175280s crypto::bigint::montyencode.....................PASS in 0.000053800s crypto::bigint::word_countbits..................PASS in 0.000032640s crypto::bigint::encreddec.......................PASS in 0.000041740s crypto::bigint::encmoddec.......................PASS in 0.000081750s crypto::bigint::encodebigger....................PASS in 0.000013810s crypto::bigint::encode..........................PASS in 0.000012960s crypto::bigint::modpow..........................PASS in 0.000242960s crypto::bigint::reduce..........................PASS in 0.000283090s crypto::bigint::rshift..........................PASS in 0.000122600s crypto::bigint::mulacc..........................PASS in 0.000175780s crypto::bigint::muladd_small....................PASS in 0.000226530s crypto::bigint::add.............................PASS in 0.000117520s crypto::chacha::hchacha20.......................PASS in 0.000018740s crypto::chacha::skipblocks......................PASS in 0.000036780s crypto::chacha::xchacha20.......................PASS in 0.000038590s crypto::chacha::chacha20........................PASS in 0.000038360s crypto::chachapoly::xencrypt....................PASS in 0.000125330s crypto::chachapoly::encrypt.....................PASS in 0.000099680s crypto::hkdf::rfc6..............................PASS in 0.000078680s crypto::hkdf::rfc5..............................PASS in 0.000108470s crypto::hkdf::rfc4..............................PASS in 0.000088350s crypto::hkdf::rfc3..............................PASS in 0.000065490s crypto::hkdf::rfc2..............................PASS in 0.000140050s crypto::hkdf::rfc1..............................PASS in 0.000135790s crypto::hmac::sha256............................PASS in 0.000056350s crypto::hmac::hmac_sha1_large_key...............PASS in 0.000062620s crypto::hmac::hmac_sha1.........................PASS in 0.000049260s crypto::hmac::hmac_sha1_empty_key...............PASS in 0.000044910s crypto::math::cmpu32............................PASS in 0.000013220s crypto::math::gtu32.............................PASS in 0.000020410s crypto::math::eq0u32............................PASS in 0.000020510s crypto::math::equ32.............................PASS in 0.000020770s crypto::math::muxu32............................PASS in 0.000013070s crypto::math::eqslice...........................PASS in 0.000020640s crypto::math::lrot64............................PASS in 0.000013250s crypto::math::lrot32............................PASS in 0.000012810s crypto::math::divu32............................PASS in 0.000015160s crypto::rsa::pkcs1..............................PASS in 0.687497310s crypto::rsa::initd..............................PASS in 0.000298060s crypto::rsa::pubprivexp.........................PASS in 0.100636279s crypto::rsa::smallprivexp.......................PASS in 0.000131580s crypto::rsa::tiny...............................PASS in 0.000016720s crypto::rsa::countbits..........................PASS in 0.000005640s crypto::poly1305::writepatterns.................PASS in 0.000012820s crypto::poly1305::example4......................PASS in 0.000006329s crypto::poly1305::example3......................PASS in 0.000005680s crypto::poly1305::example2......................PASS in 0.000005069s crypto::poly1305::example1......................PASS in 0.000005160s crypto::salsa::hsalsa20.........................PASS in 0.000009760s crypto::salsa::xsalsa20_ctr_overflow_u64........PASS in 0.000011229s crypto::salsa::xsalsa20_ctr_overflow_u32........PASS in 0.000008749s crypto::salsa::xsalsa20.........................PASS in 0.000012240s crypto::salsa::qr...............................PASS in 0.000007020s crypto::sha1::sha1..............................PASS in 0.000133111s crypto::sha256::sha256..........................PASS in 0.000197840s crypto::sha512::sha384..........................PASS in 0.000077571s crypto::sha512::sha512_256......................PASS in 0.000057769s crypto::sha512::sha512_224......................PASS in 0.000076820s crypto::sha512::sha512..........................PASS in 0.000217560s crypto::curve25519::highbitignored..............PASS in 0.011250689s crypto::curve25519::vectors.....................PASS in 0.081246480s crypto::curve25519::x25519basepoint.............PASS in 0.541118349s crypto::curve25519::unpackpack..................PASS in 0.000005940s crypto::curve25519::swap25519...................PASS in 0.000005989s crypto::curve25519::subfe.......................PASS in 0.000005629s crypto::curve25519::unpack25519.................PASS in 0.000003940s crypto::ed25519::issue716.......................PASS in 0.009136231s crypto::ed25519::golden.........................PASS in 0.013808669s crypto::ed25519::roundtrip......................PASS in 0.047062591s crypto::x25519::random..........................PASS in 0.009811211s crypto::x25519::sample..........................PASS in 0.004925529s encoding::base64::sizecalc......................PASS in 0.000005771s encoding::base64::decode........................PASS in 0.000439171s encoding::base64::encode........................PASS in 0.000015600s encoding::base64::partialwrite..................PASS in 0.000006260s encoding::base32::decode........................PASS in 0.000735709s encoding::base32::encode........................PASS in 0.000025829s encoding::hex::dump.............................PASS in 0.000073851s encoding::hex::decode...........................PASS in 0.000053520s encoding::hex::encode...........................PASS in 0.000038680s encoding::hex::encodestr........................PASS in 0.000008209s encoding::pem::readcrlf.........................PASS in 0.000090780s encoding::pem::write............................PASS in 0.000167729s encoding::pem::read_many........................PASS in 0.000097189s encoding::pem::read.............................PASS in 0.000143289s encoding::utf8::encode..........................PASS in 0.000013989s encoding::utf8::decode..........................PASS in 0.000022229s endian::little..................................PASS in 0.000036769s endian::ntoh....................................PASS in 0.000035600s endian::hton....................................PASS in 0.000034309s endian::big.....................................PASS in 0.000036431s fmt::fmt........................................PASS in 0.000207000s fnmatch::fnmatch................................PASS in 0.000400851s format::ini::invalid............................PASS in 0.000070331s format::ini::extended...........................PASS in 0.000069400s format::ini::simple.............................PASS in 0.000124291s fs::modes.......................................PASS in 0.000033060s fs::mode_str....................................PASS in 0.000055629s getopt::parse...................................PASS in 0.000054140s glob::pattern_parse.............................PASS in 0.000251500s glob::glob......................................PASS in 0.017267429s hare::lex::access_tuple.........................PASS in 0.000287809s hare::lex::loc..................................PASS in 0.000417000s hare::lex::invalid..............................PASS in 0.000290009s hare::lex::literals.............................PASS in 0.002525340s hare::lex::strings..............................PASS in 0.002191529s hare::lex::runes................................PASS in 0.001011920s hare::lex::comments.............................PASS in 0.000866540s hare::lex::keywords.............................PASS in 0.006048629s hare::lex::lexname..............................PASS in 0.000520929s hare::lex::lex3.................................PASS in 0.000934409s hare::lex::lex2.................................PASS in 0.000472071s hare::lex::lex1.................................PASS in 0.000184660s hare::lex::unlex................................PASS in 0.000058360s hare::lex::unget................................PASS in 0.000084231s hare::lex::bmaplen..............................PASS in 0.000018949s hare::parse::docs...............................PASS in 0.003489271s hare::parse::decls..............................PASS in 0.006461240s hare::parse::imports............................PASS in 0.005699611s hare::parse::enum_comments......................PASS in 0.000645220s hare::parse::tagged_union.......................PASS in 0.002635000s hare::parse::tuple..............................PASS in 0.003332920s hare::parse::enum_type..........................PASS in 0.003738371s hare::parse::array_slice........................PASS in 0.001425700s hare::parse::struct_union.......................PASS in 0.006580189s hare::parse::type_loc...........................PASS in 0.002412551s hare::parse::expr_loc...........................PASS in 0.010003809s hare::parse::ident..............................PASS in 0.004217331s hare::parse::parenthesis........................PASS in 0.005612480s hare::parse::yield_expr.........................PASS in 0.000836711s hare::parse::unarithm...........................PASS in 0.000915120s hare::parse::match_expr.........................PASS in 0.001726431s hare::parse::switch_expr........................PASS in 0.000732951s hare::parse::slice..............................PASS in 0.000827151s hare::parse::postfix............................PASS in 0.001848800s hare::parse::list...............................PASS in 0.000315331s hare::parse::if_expr............................PASS in 0.000829380s hare::parse::for_expr...........................PASS in 0.001326040s hare::parse::defer_expr.........................PASS in 0.000254869s hare::parse::control............................PASS in 0.000591120s hare::parse::constant...........................PASS in 0.005184229s hare::parse::cast...............................PASS in 0.002189900s hare::parse::call...............................PASS in 0.001438371s hare::parse::builtin............................PASS in 0.003816031s hare::parse::binding............................PASS in 0.001558509s hare::parse::binarithm..........................PASS in 0.000336851s hare::parse::assignment.........................PASS in 0.001343189s hare::types::builtins...........................PASS in 0.000010451s hare::types::forwardref.........................PASS in 0.000987011s hare::types::alias..............................PASS in 0.001032000s hare::types::tagged.............................PASS in 0.001277309s hare::types::funcs..............................PASS in 0.001168800s hare::types::lists..............................PASS in 0.001090909s hare::types::tuples.............................PASS in 0.001045240s hare::types::structs............................PASS in 0.003197611s hare::types::store..............................PASS in 0.000965020s hare::unit::_return.............................PASS in 0.001088311s hare::unit::constant............................PASS in 0.001371489s hare::unit::compound............................PASS in 0.001471831s hare::unit::access..............................PASS in 0.000969060s hare::unparse::_type............................PASS in 0.000044651s hare::unparse::import...........................PASS in 0.000046609s hare::unparse::ident............................PASS in 0.000014360s hare::unparse::decl.............................PASS in 0.000060311s hash::adler32::adler32..........................PASS in 0.000011200s hash::crc16::crc16..............................PASS in 0.000022000s hash::crc32::crc32..............................PASS in 0.000096480s hash::crc64::crc64..............................PASS in 0.000092569s hash::fnv::fnv32................................PASS in 0.000024620s hash::siphash::siphash..........................PASS in 0.000111600s math::hypot.....................................PASS in 0.000032091s math::atan2.....................................PASS in 0.000025860s math::atanh.....................................PASS in 0.000010629s math::acosh.....................................PASS in 0.000015909s math::asinh.....................................PASS in 0.000014040s math::tanh......................................PASS in 0.000012360s math::cosh......................................PASS in 0.000012940s math::sinh......................................PASS in 0.000011849s math::atan......................................PASS in 0.000009629s math::acos......................................PASS in 0.000016160s math::asin......................................PASS in 0.000015480s math::tan.......................................PASS in 0.000010129s math::sin.......................................PASS in 0.000012760s math::cos.......................................PASS in 0.000011931s math::trig_reduce...............................PASS in 0.000010420s math::nearbyint.................................PASS in 0.000010669s math::nextafter.................................PASS in 0.000012980s math::modfrac...................................PASS in 0.000010340s math::frexp_ldexp...............................PASS in 0.000011711s math::frexp.....................................PASS in 0.000012120s math::normalize.................................PASS in 0.000008751s math::signf.....................................PASS in 0.000009011s math::copysign..................................PASS in 0.000009720s math::absf......................................PASS in 0.000011509s math::float_normality...........................PASS in 0.000008140s math::isnan.....................................PASS in 0.000008900s math::floatbits.................................PASS in 0.000010920s math::modf64....................................PASS in 0.000037589s math::round.....................................PASS in 0.000010231s math::trunc.....................................PASS in 0.000012429s math::ceil......................................PASS in 0.000011140s math::floor.....................................PASS in 0.000009431s math::powf64....................................PASS in 0.000026880s math::sqrt......................................PASS in 0.000013931s math::exp2f64...................................PASS in 0.000011580s math::expf64....................................PASS in 0.000012889s math::log1p.....................................PASS in 0.000009989s math::log2f64...................................PASS in 0.000068860s math::log10f64..................................PASS in 0.000024000s math::logf64....................................PASS in 0.000071120s math::eqwithin..................................PASS in 0.000020500s math::gcd.......................................PASS in 0.000073731s math::remu......................................PASS in 0.000053440s math::divu......................................PASS in 0.000012320s math::mulu......................................PASS in 0.000009031s math::subu......................................PASS in 0.000010220s math::addu......................................PASS in 0.000012249s math::popcount..................................PASS in 0.000009511s math::trailing_zeros_u..........................PASS in 0.000007651s math::leading_zeros_u...........................PASS in 0.000007591s math::bit_size_u................................PASS in 0.000010169s math::signi.....................................PASS in 0.000010140s math::absi......................................PASS in 0.000009971s math::isinf.....................................PASS in 0.000010471s math::fround....................................PASS in 0.000017589s math::fexcept...................................PASS in 0.000008549s math::checked::mulu64...........................PASS in 0.000007000s math::checked::mulu32...........................PASS in 0.000008571s math::checked::mulu16...........................PASS in 0.000008151s math::checked::mulu8............................PASS in 0.000007309s math::checked::muli64...........................PASS in 0.000007031s math::checked::muli32...........................PASS in 0.000008351s math::checked::muli16...........................PASS in 0.000007940s math::checked::muli8............................PASS in 0.000007269s math::checked::subu64...........................PASS in 0.000007860s math::checked::subu32...........................PASS in 0.000009069s math::checked::subu16...........................PASS in 0.000006980s math::checked::subu8............................PASS in 0.000006729s math::checked::subi64...........................PASS in 0.000008889s math::checked::subi32...........................PASS in 0.000008640s math::checked::subi16...........................PASS in 0.000006951s math::checked::subi8............................PASS in 0.000006700s math::checked::addu64...........................PASS in 0.000008300s math::checked::addu32...........................PASS in 0.000008449s math::checked::addu16...........................PASS in 0.000007029s math::checked::addu8............................PASS in 0.000006711s math::checked::addi64...........................PASS in 0.000009220s math::checked::addi32...........................PASS in 0.000008100s math::checked::addi16...........................PASS in 0.000006549s math::checked::addi8............................PASS in 0.000007209s math::complex::tanhuge..........................PASS in 0.000021700s math::complex::tanh.............................PASS in 0.000018700s math::complex::tan..............................PASS in 0.000022020s math::complex::sqrt.............................PASS in 0.000035140s math::complex::sinh.............................PASS in 0.000025291s math::complex::sin..............................PASS in 0.000020829s math::complex::rect.............................PASS in 0.000040200s math::complex::pow..............................PASS in 0.000038809s math::complex::polar............................PASS in 0.000014480s math::complex::log..............................PASS in 0.000032849s math::complex::isnan............................PASS in 0.000009969s math::complex::exp..............................PASS in 0.000018200s math::complex::cosh.............................PASS in 0.000024680s math::complex::cos..............................PASS in 0.000022991s math::complex::conj.............................PASS in 0.000011749s math::complex::atanh............................PASS in 0.000030820s math::complex::atan.............................PASS in 0.000023540s math::complex::asinh............................PASS in 0.000052360s math::complex::asin.............................PASS in 0.000056491s math::complex::acosh............................PASS in 0.000055420s math::complex::acos.............................PASS in 0.000051469s math::complex::abs..............................PASS in 0.000012691s math::random::rng...............................PASS in 0.000071180s memio::rjoin....................................PASS in 0.000017231s memio::rconcat..................................PASS in 0.000016289s memio::join.....................................PASS in 0.000014671s memio::concat...................................PASS in 0.000012860s memio::dynamic..................................PASS in 0.000020651s memio::fixed....................................PASS in 0.000028111s net::dns::opcode................................PASS in 0.000010449s net::uri::percent_encoding......................PASS in 0.000131271s net::uri::invalid...............................PASS in 0.000033389s net::uri::roundtrip.............................PASS in 0.000228851s net::uri::encodequery...........................PASS in 0.000023900s net::uri::decodequery...........................PASS in 0.000039340s path::iter......................................PASS in 0.000027960s path::prepend...................................PASS in 0.000075169s path::dirname_basename..........................PASS in 0.000236440s path::ext.......................................PASS in 0.000023600s path::pop.......................................PASS in 0.000015000s path::push......................................PASS in 0.000025711s regex::rawreplace...............................PASS in 0.000397589s regex::replace..................................PASS in 0.000537460s regex::findall..................................PASS in 0.000204789s regex::find.....................................PASS in 0.007051729s shlex::quote....................................PASS in 0.000017200s shlex::split....................................PASS in 0.000068840s cmp::ints.......................................PASS in 0.000025029s sort::sorted....................................PASS in 0.000010529s sort::big_random................................PASS in 0.077433560s sort::big_equal.................................PASS in 0.020986580s sort::sort......................................PASS in 0.000033069s sort::search....................................PASS in 0.000008489s sort::rbisect...................................PASS in 0.000008491s sort::lbisect...................................PASS in 0.000049969s strconv::stoib..................................PASS in 0.000010449s strconv::stoi...................................PASS in 0.000015849s strconv::stoub..................................PASS in 0.000008340s strconv::stou...................................PASS in 0.000012240s strconv::stof32.................................PASS in 0.000033831s strconv::stof64.................................PASS in 0.000191000s strconv::f32tos.................................PASS in 0.000018729s strconv::f64tos.................................PASS in 0.000025869s strconv::numeric................................PASS in 0.000014471s strconv::utos...................................PASS in 0.000011251s strconv::utosb..................................PASS in 0.000011040s strconv::itos...................................PASS in 0.000012520s strconv::itosb..................................PASS in 0.000048169s strings::multireplace...........................PASS in 0.000023211s strings::replace................................PASS in 0.000021769s strings::padend.................................PASS in 0.000011849s strings::padstart...............................PASS in 0.000008360s strings::compare................................PASS in 0.000009909s strings::trim...................................PASS in 0.000035240s strings::byteindex..............................PASS in 0.000013909s strings::index..................................PASS in 0.000025460s strings::utf8...................................PASS in 0.000010411s strings::cut....................................PASS in 0.000012369s strings::split..................................PASS in 0.000021969s strings::tokenize...............................PASS in 0.000011589s strings::hassuffix..............................PASS in 0.000009969s strings::hasprefix..............................PASS in 0.000009271s strings::sub....................................PASS in 0.000012360s strings::fromrunes..............................PASS in 0.000023660s strings::slice..................................PASS in 0.000011829s strings::iter...................................PASS in 0.000010129s strings::dupall.................................PASS in 0.000011540s strings::dup....................................PASS in 0.000011520s strings::contains...............................PASS in 0.000012880s strings::join...................................PASS in 0.000012351s strings::concat.................................PASS in 0.000011540s strings::template::template.....................PASS in 0.000074829s test::exit......................................PASS in 0.000019969s test::_abort....................................PASS in 0.000017369s types::c::strings...............................PASS in 0.000011929s types::c::sizes.................................PASS in 0.000008629s unix::passwd::nextpw............................PASS in 0.000042929s unix::passwd::nextgr............................PASS in 0.000031740s uuid::decode....................................PASS in 0.000020760s uuid::encode....................................PASS in 0.000043920s crypto::random::reader..........................PASS in 0.000062351s crypto::random::buffer..........................PASS in 0.000057160s io::limit.......................................PASS in 0.000011089s net::ip::test_subnet_contains...................PASS in 0.000054831s net::ip::parse_subnet...........................PASS in 0.000060100s net::ip::parse_ip...............................PASS in 0.000178100s time::mult......................................PASS in 0.000018920s time::compare...................................PASS in 0.001092120s time::add.......................................PASS in 0.000011100s time::date::reckon..............................PASS in 0.000135631s time::date::parse...............................PASS in 0.000055980s time::date::truncate............................PASS in 0.000053149s time::date::unitdiff............................PASS in 0.000033289s time::date::pdiff...............................PASS in 0.000053331s time::date::format..............................PASS in 0.000079180s time::date::calc_janfirstweekday................PASS in 0.000015320s time::date::calc_weekday........................PASS in 0.000017040s time::date::calc_sundayweek.....................PASS in 0.000012260s time::date::calc_week...........................PASS in 0.000013680s time::date::calc_yearday........................PASS in 0.000013760s time::date::calc_ymd............................PASS in 0.000016380s time::date::calc_daydate__yd....................PASS in 0.000014909s time::date::calc_daydate__ywd...................PASS in 0.000017131s time::date::calc_daydate__ymd...................PASS in 0.000014200s time::date::from_str............................PASS in 0.000114509s unix::hosts::lookup.............................PASS in 0.000122440s unix::hosts::errors.............................PASS in 0.000029500s unix::hosts::next...............................PASS in 0.000108380s unix::tty::pty..................................PASS in 0.000340280s 466 passed; 0 failed; 466 completed in 2.453756449s |