File size: 47,202 Bytes
1ee64fa |
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 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 |
travis_fold:start:worker_info Worker information hostname: cf3b23e8-872f-4ed2-83dd-a48e96ec48d5@1.production-2-worker-org-gce-w724 version: v6.2.0 https://github.com/travis-ci/worker/tree/5e5476e01646095f48eec13196fdb3faf8f5cbf7 instance: travis-job-a912474b-6ac0-4cc4-bd90-3aec5abcaa3e precise-php-stable-alternative (via amqp) startup: 6.394542051s travis_fold:end:worker_info travis_fold:start:system_info Build system information Build language: php Build group: stable Build dist: precise Build id: 532942148 Job id: 532942149 Runtime kernel version: 3.13.0-115-generic travis-build version: 11415f344 Build image provisioning date and time Tue Apr 11 21:48:56 UTC 2017 Operating System Details Distributor ID: Ubuntu Description: Ubuntu 12.04.5 LTS Release: 12.04 Codename: precise Linux Version 3.13.0-115-generic Cookbooks Version cc4eb5e https://github.com/travis-ci/travis-cookbooks/tree/cc4eb5e Git version git version 1.8.5.6 bash version GNU bash, version 4.2.25(1)-release (x86_64-pc-linux-gnu) Copyright (C) 2011 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software; you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. GCC version gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 Copyright (C) 2011 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. LLVM version clang version 3.4 (tags/RELEASE_34/final) Target: x86_64-unknown-linux-gnu Thread model: posix Pre-installed Ruby versions ruby-2.2.6 Pre-installed Node.js versions v0.10.36 Pre-installed Go versions 1.7.4 mysql --version mysql Ver 14.14 Distrib 5.5.54, for debian-linux-gnu (x86_64) using readline 6.2 Pre-installed PostgreSQL versions 9.1.24 9.2.20 9.3.16 9.4.11 9.5.6 Redis version redis-server 3.0.7 riak version 2.0.2 memcached version 1.4.13 MongoDB version MongoDB 2.4.14 CouchDB version couchdb 1.6.1 Installed Sphinx versions 2.0.10 2.1.9 2.2.6 Default Sphinx version 2.2.6 Installed Firefox version firefox 38.4.0esr PhantomJS version 1.9.8 ant -version Apache Ant(TM) version 1.8.2 compiled on December 3 2011 mvn -version Apache Maven 3.2.5 (12a6b3acb947671f09b81f49094c53f426d8cea1; 2014-12-14T17:29:23+00:00) Maven home: /usr/local/maven Java version: 1.7.0_80, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-7-oracle/jre Default locale: en, platform encoding: UTF-8 OS name: "linux", version: "3.13.0-115-generic", arch: "amd64", family: "unix" phpenv versions * system (set by /home/travis/.phpenv/version) 5.3.29 5.3.3 5.4 5.4.45 5.5.29 5.5.9 5.6.13 travis_fold:end:system_info travis_fold:start:docker_mtu tee: /etc/docker/daemon.json: No such file or directory docker: unrecognized service travis_fold:end:docker_mtu travis_fold:start:resolvconf resolvconf stop/waiting resolvconf start/running travis_fold:end:resolvconf travis_fold:start:git.checkout travis_time:start:0ba88254 $ git clone --depth=50 https://github.com/bcit-ci/CodeIgniter.git bcit-ci/CodeIgniter Cloning into 'bcit-ci/CodeIgniter'... remote: Enumerating objects: 4537, done. remote: Counting objects: 0% (1/4537) remote: Counting objects: 1% (46/4537) remote: Counting objects: 2% (91/4537) remote: Counting objects: 3% (137/4537) remote: Counting objects: 4% (182/4537) remote: Counting objects: 5% (227/4537) remote: Counting objects: 6% (273/4537) remote: Counting objects: 7% (318/4537) remote: Counting objects: 8% (363/4537) remote: Counting objects: 9% (409/4537) remote: Counting objects: 10% (454/4537) remote: Counting objects: 11% (500/4537) remote: Counting objects: 12% (545/4537) remote: Counting objects: 13% (590/4537) remote: Counting objects: 14% (636/4537) remote: Counting objects: 15% (681/4537) remote: Counting objects: 16% (726/4537) remote: Counting objects: 17% (772/4537) remote: Counting objects: 18% (817/4537) remote: Counting objects: 19% (863/4537) remote: Counting objects: 20% (908/4537) remote: Counting objects: 21% (953/4537) remote: Counting objects: 22% (999/4537) remote: Counting objects: 23% (1044/4537) remote: Counting objects: 24% (1089/4537) remote: Counting objects: 25% (1135/4537) remote: Counting objects: 26% (1180/4537) remote: Counting objects: 27% (1225/4537) remote: Counting objects: 28% (1271/4537) remote: Counting objects: 29% (1316/4537) remote: Counting objects: 30% (1362/4537) remote: Counting objects: 31% (1407/4537) remote: Counting objects: 32% (1452/4537) remote: Counting objects: 33% (1498/4537) remote: Counting objects: 34% (1543/4537) remote: Counting objects: 35% (1588/4537) remote: Counting objects: 36% (1634/4537) remote: Counting objects: 37% (1679/4537) remote: Counting objects: 38% (1725/4537) remote: Counting objects: 39% (1770/4537) remote: Counting objects: 40% (1815/4537) remote: Counting objects: 41% (1861/4537) remote: Counting objects: 42% (1906/4537) remote: Counting objects: 43% (1951/4537) remote: Counting objects: 44% (1997/4537) remote: Counting objects: 45% (2042/4537) remote: Counting objects: 46% (2088/4537) remote: Counting objects: 47% (2133/4537) remote: Counting objects: 48% (2178/4537) remote: Counting objects: 49% (2224/4537) remote: Counting objects: 50% (2269/4537) remote: Counting objects: 51% (2314/4537) remote: Counting objects: 52% (2360/4537) remote: Counting objects: 53% (2405/4537) remote: Counting objects: 54% (2450/4537) remote: Counting objects: 55% (2496/4537) remote: Counting objects: 56% (2541/4537) remote: Counting objects: 57% (2587/4537) remote: Counting objects: 58% (2632/4537) remote: Counting objects: 59% (2677/4537) remote: Counting objects: 60% (2723/4537) remote: Counting objects: 61% (2768/4537) remote: Counting objects: 62% (2813/4537) remote: Counting objects: 63% (2859/4537) remote: Counting objects: 64% (2904/4537) remote: Counting objects: 65% (2950/4537) remote: Counting objects: 66% (2995/4537) remote: Counting objects: 67% (3040/4537) remote: Counting objects: 68% (3086/4537) remote: Counting objects: 69% (3131/4537) remote: Counting objects: 70% (3176/4537) remote: Counting objects: 71% (3222/4537) remote: Counting objects: 72% (3267/4537) remote: Counting objects: 73% (3313/4537) remote: Counting objects: 74% (3358/4537) remote: Counting objects: 75% (3403/4537) remote: Counting objects: 76% (3449/4537) remote: Counting objects: 77% (3494/4537) remote: Counting objects: 78% (3539/4537) remote: Counting objects: 79% (3585/4537) remote: Counting objects: 80% (3630/4537) remote: Counting objects: 81% (3675/4537) remote: Counting objects: 82% (3721/4537) remote: Counting objects: 83% (3766/4537) remote: Counting objects: 84% (3812/4537) remote: Counting objects: 85% (3857/4537) remote: Counting objects: 86% (3902/4537) remote: Counting objects: 87% (3948/4537) remote: Counting objects: 88% (3993/4537) remote: Counting objects: 89% (4038/4537) remote: Counting objects: 90% (4084/4537) remote: Counting objects: 91% (4129/4537) remote: Counting objects: 92% (4175/4537) remote: Counting objects: 93% (4220/4537) remote: Counting objects: 94% (4265/4537) remote: Counting objects: 95% (4311/4537) remote: Counting objects: 96% (4356/4537) remote: Counting objects: 97% (4401/4537) remote: Counting objects: 98% (4447/4537) remote: Counting objects: 99% (4492/4537) remote: Counting objects: 100% (4537/4537) remote: Counting objects: 100% (4537/4537), done. remote: Compressing objects: 0% (1/2184) remote: Compressing objects: 1% (22/2184) remote: Compressing objects: 2% (44/2184) remote: Compressing objects: 3% (66/2184) remote: Compressing objects: 4% (88/2184) remote: Compressing objects: 5% (110/2184) remote: Compressing objects: 6% (132/2184) remote: Compressing objects: 7% (153/2184) remote: Compressing objects: 8% (175/2184) remote: Compressing objects: 9% (197/2184) remote: Compressing objects: 10% (219/2184) remote: Compressing objects: 11% (241/2184) remote: Compressing objects: 12% (263/2184) remote: Compressing objects: 13% (284/2184) remote: Compressing objects: 14% (306/2184) remote: Compressing objects: 15% (328/2184) remote: Compressing objects: 16% (350/2184) remote: Compressing objects: 17% (372/2184) remote: Compressing objects: 18% (394/2184) remote: Compressing objects: 19% (415/2184) remote: Compressing objects: 20% (437/2184) remote: Compressing objects: 21% (459/2184) remote: Compressing objects: 22% (481/2184) remote: Compressing objects: 23% (503/2184) remote: Compressing objects: 24% (525/2184) remote: Compressing objects: 25% (546/2184) remote: Compressing objects: 26% (568/2184) remote: Compressing objects: 27% (590/2184) remote: Compressing objects: 28% (612/2184) remote: Compressing objects: 29% (634/2184) remote: Compressing objects: 30% (656/2184) remote: Compressing objects: 31% (678/2184) remote: Compressing objects: 32% (699/2184) remote: Compressing objects: 33% (721/2184) remote: Compressing objects: 34% (743/2184) remote: Compressing objects: 35% (765/2184) remote: Compressing objects: 36% (787/2184) remote: Compressing objects: 37% (809/2184) remote: Compressing objects: 38% (830/2184) remote: Compressing objects: 39% (852/2184) remote: Compressing objects: 40% (874/2184) remote: Compressing objects: 41% (896/2184) remote: Compressing objects: 42% (918/2184) remote: Compressing objects: 43% (940/2184) remote: Compressing objects: 44% (961/2184) remote: Compressing objects: 45% (983/2184) remote: Compressing objects: 46% (1005/2184) remote: Compressing objects: 47% (1027/2184) remote: Compressing objects: 48% (1049/2184) remote: Compressing objects: 49% (1071/2184) remote: Compressing objects: 50% (1092/2184) remote: Compressing objects: 51% (1114/2184) remote: Compressing objects: 52% (1136/2184) remote: Compressing objects: 53% (1158/2184) remote: Compressing objects: 54% (1180/2184) remote: Compressing objects: 55% (1202/2184) remote: Compressing objects: 56% (1224/2184) remote: Compressing objects: 57% (1245/2184) remote: Compressing objects: 58% (1267/2184) remote: Compressing objects: 59% (1289/2184) remote: Compressing objects: 60% (1311/2184) remote: Compressing objects: 61% (1333/2184) remote: Compressing objects: 62% (1355/2184) remote: Compressing objects: 63% (1376/2184) remote: Compressing objects: 64% (1398/2184) remote: Compressing objects: 65% (1420/2184) remote: Compressing objects: 66% (1442/2184) remote: Compressing objects: 67% (1464/2184) remote: Compressing objects: 68% (1486/2184) remote: Compressing objects: 69% (1507/2184) remote: Compressing objects: 70% (1529/2184) remote: Compressing objects: 71% (1551/2184) remote: Compressing objects: 72% (1573/2184) remote: Compressing objects: 73% (1595/2184) remote: Compressing objects: 74% (1617/2184) remote: Compressing objects: 75% (1638/2184) remote: Compressing objects: 76% (1660/2184) remote: Compressing objects: 77% (1682/2184) remote: Compressing objects: 78% (1704/2184) remote: Compressing objects: 79% (1726/2184) remote: Compressing objects: 80% (1748/2184) remote: Compressing objects: 81% (1770/2184) remote: Compressing objects: 82% (1791/2184) remote: Compressing objects: 83% (1813/2184) remote: Compressing objects: 84% (1835/2184) remote: Compressing objects: 85% (1857/2184) remote: Compressing objects: 86% (1879/2184) remote: Compressing objects: 87% (1901/2184) remote: Compressing objects: 88% (1922/2184) remote: Compressing objects: 89% (1944/2184) remote: Compressing objects: 90% (1966/2184) remote: Compressing objects: 91% (1988/2184) remote: Compressing objects: 92% (2010/2184) remote: Compressing objects: 93% (2032/2184) remote: Compressing objects: 94% (2053/2184) remote: Compressing objects: 95% (2075/2184) remote: Compressing objects: 96% (2097/2184) remote: Compressing objects: 97% (2119/2184) remote: Compressing objects: 98% (2141/2184) remote: Compressing objects: 99% (2163/2184) remote: Compressing objects: 100% (2184/2184) remote: Compressing objects: 100% (2184/2184), done. Receiving objects: 0% (1/4537) Receiving objects: 1% (46/4537) Receiving objects: 2% (91/4537) Receiving objects: 3% (137/4537) Receiving objects: 4% (182/4537) Receiving objects: 5% (227/4537) Receiving objects: 6% (273/4537) Receiving objects: 7% (318/4537) Receiving objects: 8% (363/4537) Receiving objects: 9% (409/4537) Receiving objects: 10% (454/4537) Receiving objects: 11% (500/4537) Receiving objects: 12% (545/4537) Receiving objects: 13% (590/4537) Receiving objects: 14% (636/4537) Receiving objects: 15% (681/4537) Receiving objects: 16% (726/4537) Receiving objects: 17% (772/4537) Receiving objects: 18% (817/4537) Receiving objects: 19% (863/4537) Receiving objects: 20% (908/4537) Receiving objects: 21% (953/4537) Receiving objects: 22% (999/4537) Receiving objects: 23% (1044/4537) Receiving objects: 24% (1089/4537) Receiving objects: 25% (1135/4537) Receiving objects: 26% (1180/4537) Receiving objects: 27% (1225/4537) Receiving objects: 28% (1271/4537) Receiving objects: 29% (1316/4537) Receiving objects: 30% (1362/4537) Receiving objects: 31% (1407/4537) Receiving objects: 32% (1452/4537) Receiving objects: 33% (1498/4537) Receiving objects: 34% (1543/4537) Receiving objects: 35% (1588/4537) Receiving objects: 36% (1634/4537) Receiving objects: 37% (1679/4537) Receiving objects: 38% (1725/4537) Receiving objects: 39% (1770/4537) Receiving objects: 40% (1815/4537) Receiving objects: 41% (1861/4537) Receiving objects: 42% (1906/4537) Receiving objects: 43% (1951/4537) Receiving objects: 44% (1997/4537) Receiving objects: 45% (2042/4537) Receiving objects: 46% (2088/4537) Receiving objects: 47% (2133/4537) Receiving objects: 48% (2178/4537) Receiving objects: 49% (2224/4537) Receiving objects: 50% (2269/4537) Receiving objects: 51% (2314/4537) Receiving objects: 52% (2360/4537) Receiving objects: 53% (2405/4537) Receiving objects: 54% (2450/4537) Receiving objects: 55% (2496/4537) Receiving objects: 56% (2541/4537) Receiving objects: 57% (2587/4537) Receiving objects: 58% (2632/4537) Receiving objects: 59% (2677/4537) Receiving objects: 60% (2723/4537) Receiving objects: 61% (2768/4537) Receiving objects: 62% (2813/4537) Receiving objects: 63% (2859/4537) Receiving objects: 64% (2904/4537) Receiving objects: 65% (2950/4537) Receiving objects: 66% (2995/4537) Receiving objects: 67% (3040/4537) Receiving objects: 68% (3086/4537) Receiving objects: 69% (3131/4537) Receiving objects: 70% (3176/4537) Receiving objects: 71% (3222/4537) Receiving objects: 72% (3267/4537) Receiving objects: 73% (3313/4537) Receiving objects: 74% (3358/4537) Receiving objects: 75% (3403/4537) Receiving objects: 76% (3449/4537) Receiving objects: 77% (3494/4537) Receiving objects: 78% (3539/4537) Receiving objects: 79% (3585/4537) Receiving objects: 80% (3630/4537) Receiving objects: 81% (3675/4537) Receiving objects: 82% (3721/4537) Receiving objects: 83% (3766/4537) Receiving objects: 84% (3812/4537) Receiving objects: 85% (3857/4537) remote: Total 4537 (delta 3337), reused 3191 (delta 2338), pack-reused 0 Receiving objects: 86% (3902/4537) Receiving objects: 87% (3948/4537) Receiving objects: 88% (3993/4537) Receiving objects: 89% (4038/4537) Receiving objects: 90% (4084/4537) Receiving objects: 91% (4129/4537) Receiving objects: 92% (4175/4537) Receiving objects: 93% (4220/4537) Receiving objects: 94% (4265/4537) Receiving objects: 95% (4311/4537) Receiving objects: 96% (4356/4537) Receiving objects: 97% (4401/4537) Receiving objects: 98% (4447/4537) Receiving objects: 99% (4492/4537) Receiving objects: 100% (4537/4537) Receiving objects: 100% (4537/4537), 2.05 MiB | 0 bytes/s, done. Resolving deltas: 0% (0/3337) Resolving deltas: 1% (37/3337) Resolving deltas: 2% (67/3337) Resolving deltas: 3% (112/3337) Resolving deltas: 4% (153/3337) Resolving deltas: 5% (181/3337) Resolving deltas: 6% (219/3337) Resolving deltas: 7% (250/3337) Resolving deltas: 8% (277/3337) Resolving deltas: 9% (329/3337) Resolving deltas: 10% (351/3337) Resolving deltas: 11% (372/3337) Resolving deltas: 12% (419/3337) Resolving deltas: 13% (444/3337) Resolving deltas: 16% (558/3337) Resolving deltas: 20% (679/3337) Resolving deltas: 22% (747/3337) Resolving deltas: 25% (848/3337) Resolving deltas: 26% (869/3337) Resolving deltas: 27% (912/3337) Resolving deltas: 28% (935/3337) Resolving deltas: 29% (969/3337) Resolving deltas: 30% (1013/3337) Resolving deltas: 31% (1045/3337) Resolving deltas: 32% (1086/3337) Resolving deltas: 33% (1102/3337) Resolving deltas: 34% (1152/3337) Resolving deltas: 35% (1168/3337) Resolving deltas: 36% (1213/3337) Resolving deltas: 37% (1264/3337) Resolving deltas: 38% (1282/3337) Resolving deltas: 39% (1302/3337) Resolving deltas: 40% (1351/3337) Resolving deltas: 41% (1378/3337) Resolving deltas: 42% (1410/3337) Resolving deltas: 43% (1436/3337) Resolving deltas: 44% (1469/3337) Resolving deltas: 45% (1509/3337) Resolving deltas: 46% (1537/3337) Resolving deltas: 47% (1569/3337) Resolving deltas: 48% (1605/3337) Resolving deltas: 49% (1643/3337) Resolving deltas: 50% (1673/3337) Resolving deltas: 51% (1703/3337) Resolving deltas: 52% (1740/3337) Resolving deltas: 53% (1793/3337) Resolving deltas: 54% (1805/3337) Resolving deltas: 55% (1839/3337) Resolving deltas: 56% (1870/3337) Resolving deltas: 57% (1904/3337) Resolving deltas: 58% (1942/3337) Resolving deltas: 59% (1969/3337) Resolving deltas: 60% (2024/3337) Resolving deltas: 63% (2126/3337) Resolving deltas: 65% (2199/3337) Resolving deltas: 66% (2208/3337) Resolving deltas: 67% (2238/3337) Resolving deltas: 68% (2270/3337) Resolving deltas: 69% (2309/3337) Resolving deltas: 70% (2337/3337) Resolving deltas: 71% (2374/3337) Resolving deltas: 75% (2514/3337) Resolving deltas: 76% (2539/3337) Resolving deltas: 78% (2604/3337) Resolving deltas: 79% (2641/3337) Resolving deltas: 80% (2677/3337) Resolving deltas: 81% (2735/3337) Resolving deltas: 82% (2741/3337) Resolving deltas: 83% (2771/3337) Resolving deltas: 84% (2805/3337) Resolving deltas: 85% (2845/3337) Resolving deltas: 86% (2892/3337) Resolving deltas: 87% (2916/3337) Resolving deltas: 88% (2958/3337) Resolving deltas: 89% (2985/3337) Resolving deltas: 90% (3014/3337) Resolving deltas: 91% (3042/3337) Resolving deltas: 92% (3080/3337) Resolving deltas: 93% (3106/3337) Resolving deltas: 94% (3143/3337) Resolving deltas: 95% (3173/3337) Resolving deltas: 96% (3214/3337) Resolving deltas: 97% (3251/3337) Resolving deltas: 100% (3337/3337) Resolving deltas: 100% (3337/3337), done. Checking connectivity... done. travis_time:end:0ba88254:start=1557943584788152631,finish=1557943586493677270,duration=1705524639 $ cd bcit-ci/CodeIgniter travis_time:start:084f5ea4 $ git fetch origin +refs/pull/5759/merge: remote: Enumerating objects: 219, done. remote: Counting objects: 0% (1/213) remote: Counting objects: 1% (3/213) remote: Counting objects: 2% (5/213) remote: Counting objects: 3% (7/213) remote: Counting objects: 4% (9/213) remote: Counting objects: 5% (11/213) remote: Counting objects: 6% (13/213) remote: Counting objects: 7% (15/213) remote: Counting objects: 8% (18/213) remote: Counting objects: 9% (20/213) remote: Counting objects: 10% (22/213) remote: Counting objects: 11% (24/213) remote: Counting objects: 12% (26/213) remote: Counting objects: 13% (28/213) remote: Counting objects: 14% (30/213) remote: Counting objects: 15% (32/213) remote: Counting objects: 16% (35/213) remote: Counting objects: 17% (37/213) remote: Counting objects: 18% (39/213) remote: Counting objects: 19% (41/213) remote: Counting objects: 20% (43/213) remote: Counting objects: 21% (45/213) remote: Counting objects: 22% (47/213) remote: Counting objects: 23% (49/213) remote: Counting objects: 24% (52/213) remote: Counting objects: 25% (54/213) remote: Counting objects: 26% (56/213) remote: Counting objects: 27% (58/213) remote: Counting objects: 28% (60/213) remote: Counting objects: 29% (62/213) remote: Counting objects: 30% (64/213) remote: Counting objects: 31% (67/213) remote: Counting objects: 32% (69/213) remote: Counting objects: 33% (71/213) remote: Counting objects: 34% (73/213) remote: Counting objects: 35% (75/213) remote: Counting objects: 36% (77/213) remote: Counting objects: 37% (79/213) remote: Counting objects: 38% (81/213) remote: Counting objects: 39% (84/213) remote: Counting objects: 40% (86/213) remote: Counting objects: 41% (88/213) remote: Counting objects: 42% (90/213) remote: Counting objects: 43% (92/213) remote: Counting objects: 44% (94/213) remote: Counting objects: 45% (96/213) remote: Counting objects: 46% (98/213) remote: Counting objects: 47% (101/213) remote: Counting objects: 48% (103/213) remote: Counting objects: 49% (105/213) remote: Counting objects: 50% (107/213) remote: Counting objects: 51% (109/213) remote: Counting objects: 52% (111/213) remote: Counting objects: 53% (113/213) remote: Counting objects: 54% (116/213) remote: Counting objects: 55% (118/213) remote: Counting objects: 56% (120/213) remote: Counting objects: 57% (122/213) remote: Counting objects: 58% (124/213) remote: Counting objects: 59% (126/213) remote: Counting objects: 60% (128/213) remote: Counting objects: 61% (130/213) remote: Counting objects: 62% (133/213) remote: Counting objects: 63% (135/213) remote: Counting objects: 64% (137/213) remote: Counting objects: 65% (139/213) remote: Counting objects: 66% (141/213) remote: Counting objects: 67% (143/213) remote: Counting objects: 68% (145/213) remote: Counting objects: 69% (147/213) remote: Counting objects: 70% (150/213) remote: Counting objects: 71% (152/213) remote: Counting objects: 72% (154/213) remote: Counting objects: 73% (156/213) remote: Counting objects: 74% (158/213) remote: Counting objects: 75% (160/213) remote: Counting objects: 76% (162/213) remote: Counting objects: 77% (165/213) remote: Counting objects: 78% (167/213) remote: Counting objects: 79% (169/213) remote: Counting objects: 80% (171/213) remote: Counting objects: 81% (173/213) remote: Counting objects: 82% (175/213) remote: Counting objects: 83% (177/213) remote: Counting objects: 84% (179/213) remote: Counting objects: 85% (182/213) remote: Counting objects: 86% (184/213) remote: Counting objects: 87% (186/213) remote: Counting objects: 88% (188/213) remote: Counting objects: 89% (190/213) remote: Counting objects: 90% (192/213) remote: Counting objects: 91% (194/213) remote: Counting objects: 92% (196/213) remote: Counting objects: 93% (199/213) remote: Counting objects: 94% (201/213) remote: Counting objects: 95% (203/213) remote: Counting objects: 96% (205/213) remote: Counting objects: 97% (207/213) remote: Counting objects: 98% (209/213) remote: Counting objects: 99% (211/213) remote: Counting objects: 100% (213/213) remote: Counting objects: 100% (213/213), done. remote: Compressing objects: 1% (1/59) remote: Compressing objects: 3% (2/59) remote: Compressing objects: 5% (3/59) remote: Compressing objects: 6% (4/59) remote: Compressing objects: 8% (5/59) remote: Compressing objects: 10% (6/59) remote: Compressing objects: 11% (7/59) remote: Compressing objects: 13% (8/59) remote: Compressing objects: 15% (9/59) remote: Compressing objects: 16% (10/59) remote: Compressing objects: 18% (11/59) remote: Compressing objects: 20% (12/59) remote: Compressing objects: 22% (13/59) remote: Compressing objects: 23% (14/59) remote: Compressing objects: 25% (15/59) remote: Compressing objects: 27% (16/59) remote: Compressing objects: 28% (17/59) remote: Compressing objects: 30% (18/59) remote: Compressing objects: 32% (19/59) remote: Compressing objects: 33% (20/59) remote: Compressing objects: 35% (21/59) remote: Compressing objects: 37% (22/59) remote: Compressing objects: 38% (23/59) remote: Compressing objects: 40% (24/59) remote: Compressing objects: 42% (25/59) remote: Compressing objects: 44% (26/59) remote: Compressing objects: 45% (27/59) remote: Compressing objects: 47% (28/59) remote: Compressing objects: 49% (29/59) remote: Compressing objects: 50% (30/59) remote: Compressing objects: 52% (31/59) remote: Compressing objects: 54% (32/59) remote: Compressing objects: 55% (33/59) remote: Compressing objects: 57% (34/59) remote: Compressing objects: 59% (35/59) remote: Compressing objects: 61% (36/59) remote: Compressing objects: 62% (37/59) remote: Compressing objects: 64% (38/59) remote: Compressing objects: 66% (39/59) remote: Compressing objects: 67% (40/59) remote: Compressing objects: 69% (41/59) remote: Compressing objects: 71% (42/59) remote: Compressing objects: 72% (43/59) remote: Compressing objects: 74% (44/59) remote: Compressing objects: 76% (45/59) remote: Compressing objects: 77% (46/59) remote: Compressing objects: 79% (47/59) remote: Compressing objects: 81% (48/59) remote: Compressing objects: 83% (49/59) remote: Compressing objects: 84% (50/59) remote: Compressing objects: 86% (51/59) remote: Compressing objects: 88% (52/59) remote: Compressing objects: 89% (53/59) remote: Compressing objects: 91% (54/59) remote: Compressing objects: 93% (55/59) remote: Compressing objects: 94% (56/59) remote: Compressing objects: 96% (57/59) remote: Compressing objects: 98% (58/59) remote: Compressing objects: 100% (59/59) remote: Compressing objects: 100% (59/59), done. Receiving objects: 0% (1/139) Receiving objects: 1% (2/139) Receiving objects: 2% (3/139) Receiving objects: 3% (5/139) Receiving objects: 4% (6/139) Receiving objects: 5% (7/139) Receiving objects: 6% (9/139) Receiving objects: 7% (10/139) Receiving objects: 8% (12/139) Receiving objects: 9% (13/139) Receiving objects: 10% (14/139) Receiving objects: 11% (16/139) Receiving objects: 12% (17/139) Receiving objects: 13% (19/139) Receiving objects: 14% (20/139) Receiving objects: 15% (21/139) Receiving objects: 16% (23/139) Receiving objects: 17% (24/139) Receiving objects: 18% (26/139) Receiving objects: 19% (27/139) Receiving objects: 20% (28/139) Receiving objects: 21% (30/139) Receiving objects: 22% (31/139) Receiving objects: 23% (32/139) Receiving objects: 24% (34/139) Receiving objects: 25% (35/139) Receiving objects: 26% (37/139) Receiving objects: 27% (38/139) Receiving objects: 28% (39/139) Receiving objects: 29% (41/139) Receiving objects: 30% (42/139) Receiving objects: 31% (44/139) remote: Total 139 (delta 111), reused 104 (delta 78), pack-reused 0 Receiving objects: 32% (45/139) Receiving objects: 33% (46/139) Receiving objects: 34% (48/139) Receiving objects: 35% (49/139) Receiving objects: 36% (51/139) Receiving objects: 37% (52/139) Receiving objects: 38% (53/139) Receiving objects: 39% (55/139) Receiving objects: 40% (56/139) Receiving objects: 41% (57/139) Receiving objects: 42% (59/139) Receiving objects: 43% (60/139) Receiving objects: 44% (62/139) Receiving objects: 45% (63/139) Receiving objects: 46% (64/139) Receiving objects: 47% (66/139) Receiving objects: 48% (67/139) Receiving objects: 49% (69/139) Receiving objects: 50% (70/139) Receiving objects: 51% (71/139) Receiving objects: 52% (73/139) Receiving objects: 53% (74/139) Receiving objects: 54% (76/139) Receiving objects: 55% (77/139) Receiving objects: 56% (78/139) Receiving objects: 57% (80/139) Receiving objects: 58% (81/139) Receiving objects: 59% (83/139) Receiving objects: 60% (84/139) Receiving objects: 61% (85/139) Receiving objects: 62% (87/139) Receiving objects: 63% (88/139) Receiving objects: 64% (89/139) Receiving objects: 65% (91/139) Receiving objects: 66% (92/139) Receiving objects: 67% (94/139) Receiving objects: 68% (95/139) Receiving objects: 69% (96/139) Receiving objects: 70% (98/139) Receiving objects: 71% (99/139) Receiving objects: 72% (101/139) Receiving objects: 73% (102/139) Receiving objects: 74% (103/139) Receiving objects: 75% (105/139) Receiving objects: 76% (106/139) Receiving objects: 77% (108/139) Receiving objects: 78% (109/139) Receiving objects: 79% (110/139) Receiving objects: 80% (112/139) Receiving objects: 81% (113/139) Receiving objects: 82% (114/139) Receiving objects: 83% (116/139) Receiving objects: 84% (117/139) Receiving objects: 85% (119/139) Receiving objects: 86% (120/139) Receiving objects: 87% (121/139) Receiving objects: 88% (123/139) Receiving objects: 89% (124/139) Receiving objects: 90% (126/139) Receiving objects: 91% (127/139) Receiving objects: 92% (128/139) Receiving objects: 93% (130/139) Receiving objects: 94% (131/139) Receiving objects: 95% (133/139) Receiving objects: 96% (134/139) Receiving objects: 97% (135/139) Receiving objects: 98% (137/139) Receiving objects: 99% (138/139) Receiving objects: 100% (139/139) Receiving objects: 100% (139/139), 23.89 KiB | 0 bytes/s, done. Resolving deltas: 0% (0/111) Resolving deltas: 18% (20/111) Resolving deltas: 19% (22/111) Resolving deltas: 20% (23/111) Resolving deltas: 30% (34/111) Resolving deltas: 32% (36/111) Resolving deltas: 33% (37/111) Resolving deltas: 34% (38/111) Resolving deltas: 35% (39/111) Resolving deltas: 36% (40/111) Resolving deltas: 37% (42/111) Resolving deltas: 38% (43/111) Resolving deltas: 45% (51/111) Resolving deltas: 49% (55/111) Resolving deltas: 53% (59/111) Resolving deltas: 54% (60/111) Resolving deltas: 55% (62/111) Resolving deltas: 56% (63/111) Resolving deltas: 57% (64/111) Resolving deltas: 58% (65/111) Resolving deltas: 60% (67/111) Resolving deltas: 62% (69/111) Resolving deltas: 63% (71/111) Resolving deltas: 64% (72/111) Resolving deltas: 65% (73/111) Resolving deltas: 66% (74/111) Resolving deltas: 76% (85/111) Resolving deltas: 86% (96/111) Resolving deltas: 88% (98/111) Resolving deltas: 93% (104/111) Resolving deltas: 94% (105/111) Resolving deltas: 95% (106/111) Resolving deltas: 96% (107/111) Resolving deltas: 97% (108/111) Resolving deltas: 98% (109/111) Resolving deltas: 99% (110/111) Resolving deltas: 100% (111/111) Resolving deltas: 100% (111/111), completed with 38 local objects. From https://github.com/bcit-ci/CodeIgniter * branch refs/pull/5759/merge -> FETCH_HEAD travis_time:end:084f5ea4:start=1557943586497032588,finish=1557943588537304405,duration=2040271817 $ git checkout -qf FETCH_HEAD travis_fold:end:git.checkout Setting environment variables from .travis.yml $ export DB=mysql travis_time:start:05d4552e $ phpenv global 5.3 2>/dev/null travis_time:end:05d4552e:start=1557943588619671041,finish=1557943588644966009,duration=25294968 5.3 is not pre-installed; installing Downloading archive: https://storage.googleapis.com/travis-ci-language-archives/php/binaries/ubuntu/12.04/x86_64/php-5.3.tar.bz2 travis_time:start:10fbdde8 $ curl -s -o archive.tar.bz2 $archive_url && tar xjf archive.tar.bz2 --directory / travis_time:end:10fbdde8:start=1557943588705542445,finish=1557943593717950465,duration=5012408020 travis_time:start:18d66644 travis_time:end:18d66644:start=1557943593721450742,finish=1557943593729597121,duration=8146379 travis_time:start:0ec6c2f4 $ phpenv global 5.3 travis_time:end:0ec6c2f4:start=1557943593733134776,finish=1557943593750976350,duration=17841574 You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug Warning: This development build of composer is over 60 days old. It is recommended to update it by running "/home/travis/.phpenv/versions/5.3/bin/composer self-update" to get the latest version. travis_time:start:049f3b87 $ composer self-update 1.0.0 You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug Updating to version 1.0.0. Downloading: Connecting... Downloading: 100% Use composer self-update --rollback to return to version 2b14f0a047dd4f3545ec82381f65c36ea93a4c81 travis_time:end:049f3b87:start=1557943594098128757,finish=1557943595269110892,duration=1170982135 travis_time:start:286b1de8 $ composer self-update You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug Updating to version 1.8.5. Downloading: Connecting... Downloading: 100% Use composer self-update --rollback to return to version 1.0.0 travis_time:end:286b1de8:start=1557943595272344927,finish=1557943596715804228,duration=1443459301 $ php --version PHP 5.3.29 (cli) (built: Nov 26 2015 00:52:51) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2014 Zend Technologies with Xdebug v2.2.7, Copyright (c) 2002-2015, by Derick Rethans $ composer --version Deprecation warning: require-dev.mikey179/vfsStream is invalid, it should not contain uppercase characters. Please use mikey179/vfsstream instead. Make sure you fix this as Composer 2.0 will error. You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug Composer version 1.8.5 2019-04-09 17:46:47 travis_fold:start:before_script.1 travis_time:start:256f1b15 $ sh -c "composer install --dev --no-progress" Deprecation warning: require-dev.mikey179/vfsStream is invalid, it should not contain uppercase characters. Please use mikey179/vfsstream instead. Make sure you fix this as Composer 2.0 will error. You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug You are using the deprecated option "dev". Dev packages are installed by default now. Loading composer repositories with package information Updating dependencies (including require-dev) Package operations: 20 installs, 0 updates, 0 removals - Installing mikey179/vfsstream (v1.1.0): Downloading (100%) - Installing sebastian/version (1.0.6): Downloading (100%) - Installing sebastian/global-state (1.1.1): Downloading (100%) - Installing sebastian/recursion-context (1.0.5): Downloading (100%) - Installing sebastian/exporter (1.2.2): Downloading (100%) - Installing sebastian/environment (1.3.8): Downloading (100%) - Installing sebastian/diff (1.4.3): Downloading (100%) - Installing sebastian/comparator (1.2.4): Downloading (100%) - Installing symfony/polyfill-ctype (v1.11.0): Downloading (100%) - Installing symfony/yaml (v2.8.50): Downloading (100%) - Installing doctrine/instantiator (1.0.5): Downloading (100%) - Installing phpdocumentor/reflection-docblock (2.0.5): Downloading (100%) - Installing phpspec/prophecy (1.8.0): Downloading (100%) - Installing phpunit/php-text-template (1.2.1): Downloading (100%) - Installing phpunit/phpunit-mock-objects (2.3.8): Downloading (100%) - Installing phpunit/php-timer (1.0.9): Downloading (100%) - Installing phpunit/php-token-stream (1.4.12): Downloading (100%) - Installing phpunit/php-file-iterator (1.4.5): Downloading (100%) - Installing phpunit/php-code-coverage (2.2.4): Downloading (100%) - Installing phpunit/phpunit (4.8.36): Downloading (100%) sebastian/global-state suggests installing ext-uopz (*) phpdocumentor/reflection-docblock suggests installing dflydev/markdown (~1.0) phpdocumentor/reflection-docblock suggests installing erusev/parsedown (~1.0) phpunit/phpunit suggests installing phpunit/php-invoker (~1.1) Package phpunit/phpunit-mock-objects is abandoned, you should avoid using it. No replacement was suggested. Writing lock file Generating autoload files travis_time:end:256f1b15:start=1557943596935935422,finish=1557943638449099270,duration=41513163848 travis_fold:end:before_script.1 travis_fold:start:before_script.2 travis_time:start:14613b10 $ sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS ci_test;' -U postgres; fi" travis_time:end:14613b10:start=1557943638452708950,finish=1557943638455795280,duration=3086330 travis_fold:end:before_script.2 travis_fold:start:before_script.3 travis_time:start:0067f278 $ sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'create database ci_test;' -U postgres; fi" travis_time:end:0067f278:start=1557943638459119542,finish=1557943638462129657,duration=3010115 travis_fold:end:before_script.3 travis_fold:start:before_script.4 travis_time:start:0985c032 $ sh -c "if [ '$DB' = 'mysql' ] || [ '$DB' = 'mysqli' ] || [ '$DB' = 'pdo/mysql' ]; then mysql -e 'create database IF NOT EXISTS ci_test;'; fi" travis_time:end:0985c032:start=1557943638465318104,finish=1557943638472639552,duration=7321448 travis_fold:end:before_script.4 travis_time:start:2385ab10 $ php -d zend.enable_gc=0 -d date.timezone=UTC -d mbstring.func_overload=7 -d mbstring.internal_encoding=UTF-8 vendor/bin/phpunit --coverage-text --configuration tests/travis/$DB.phpunit.xml PHPUnit 4.8.36 by Sebastian Bergmann and contributors. ...................F..F....F...SSS............................. 63 / 412 ( 15%) ...........FF.FFFFFS....................SSSS................... 126 / 412 ( 30%) .............................................SSFS.............. 189 / 412 ( 45%) ..........S.S...............................................F.. 252 / 412 ( 61%) ...................................................S........... 315 / 412 ( 76%) ............................................................... 378 / 412 ( 91%) ..S.................F.......... Time: 22.82 seconds, Memory: 160.50MB There were 13 failures: 1) Input_test::test_get_exist_with_xss_clean Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'Hello, i try to [removed]alert('Hack');[removed] your site' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Input_test.php:51 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 2) Input_test::test_post_exist_with_xss_clean Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'Hello, i try to [removed]alert('Hack');[removed] your site' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Input_test.php:82 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 3) Input_test::test_fetch_from_array Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'Hello, i try to [removed]alert('Hack');[removed] your site' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Input_test.php:136 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 4) Security_test::test_xss_clean Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'Hello, i try to [removed]alert('Hack');[removed] your site' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Security_test.php:71 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 5) Security_test::test_xss_clean_string_array Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'Hello, i try to [removed]alert('Hack');[removed] your site' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Security_test.php:86 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 6) Security_test::test_xss_clean_image_invalid Failed asserting that '' is false. /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Security_test.php:110 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 7) Security_test::test_xss_clean_entity_double_encoded Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'<a>Clickhere</a>' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Security_test.php:118 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 8) Security_test::test_xss_clean_js_img_removal Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'<img>' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Security_test.php:137 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 9) Security_test::test_xss_clean_sanitize_naughty_html_tags Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'<unclosedTag' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Security_test.php:144 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 10) Security_test::test_xss_clean_sanitize_naughty_html_attributes Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'<foo xss=removed>' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/core/Security_test.php:168 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 11) Cookie_helper_test::test_get_cookie Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'bar' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/helpers/cookie_helper_test.php:37 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 12) Security_helper_tests::test_xss_clean Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'foo' +'' /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/helpers/security_helper_test.php:15 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 13) Upload_test::test_do_xss_clean Failed asserting that '' is true. /home/travis/build/bcit-ci/CodeIgniter/tests/codeigniter/libraries/Upload_test.php:265 /home/travis/build/bcit-ci/CodeIgniter/tests/mocks/ci_testcase.php:351 FAILURES! Tests: 407, Assertions: 1341, Failures: 13, Skipped: 15. Code Coverage Report: 2019-05-15 18:07:18 Summary: Classes: 13.33% (4/30) Methods: 42.22% (228/540) Lines: 59.60% (5302/8896) @CI.DB.mysql::CI_DB_mysql_forge Methods: 0.00% ( 0/ 4) Lines: 42.25% ( 30/ 71) @CI.DB.mysql::CI_DB_mysql_result Methods: 44.44% ( 4/ 9) Lines: 19.35% ( 6/ 31) @CI.DB.query::CI_DB_query_builder Methods: 32.50% (26/80) Lines: 61.12% (566/926) @CI.DB::CI_DB_forge Methods: 12.00% ( 3/25) Lines: 34.29% (131/382) @CI.DB::CI_DB_result Methods: 4.35% ( 1/23) Lines: 21.21% ( 35/165) @CodeIgniter.Drivers::CI_DB_driver Methods: 15.79% ( 9/57) Lines: 32.61% (180/552) @CodeIgniter.Drivers::CI_DB_mysql_driver Methods: 25.00% ( 5/20) Lines: 39.22% ( 40/102) @CodeIgniter.Libraries::CI_Benchmark Methods: 100.00% ( 3/ 3) Lines: 100.00% ( 14/ 14) @CodeIgniter.Libraries::CI_Calendar Methods: 55.56% ( 5/ 9) Lines: 75.00% (147/196) @CodeIgniter.Libraries::CI_Config Methods: 50.00% ( 4/ 8) Lines: 86.09% ( 99/115) @CodeIgniter.Libraries::CI_Driver Methods: 50.00% ( 2/ 4) Lines: 94.12% ( 32/ 34) @CodeIgniter.Libraries::CI_Driver_Library Methods: 0.00% ( 0/ 2) Lines: 90.62% ( 58/ 64) @CodeIgniter.Libraries::CI_Encrypt Methods: 50.00% (10/20) Lines: 64.29% ( 72/112) @CodeIgniter.Libraries::CI_Encryption Methods: 42.11% ( 8/19) Lines: 85.99% (307/357) @CodeIgniter.Libraries::CI_Form_validation Methods: 76.92% (40/52) Lines: 83.55% (381/456) @CodeIgniter.Libraries::CI_Input Methods: 47.62% (10/21) Lines: 55.21% (159/288) @CodeIgniter.Libraries::CI_Lang Methods: 66.67% ( 2/ 3) Lines: 83.82% ( 57/ 68) @CodeIgniter.Libraries::CI_Loader Methods: 58.62% (17/29) Lines: 77.28% (415/537) @CodeIgniter.Libraries::CI_Log Methods: 20.00% ( 1/ 5) Lines: 30.86% ( 25/ 81) @CodeIgniter.Libraries::CI_Model Methods: 100.00% ( 1/ 1) Lines: 100.00% ( 1/ 1) @CodeIgniter.Libraries::CI_Output Methods: 21.05% ( 4/19) Lines: 14.79% ( 42/284) @CodeIgniter.Libraries::CI_Parser Methods: 57.14% ( 4/ 7) Lines: 80.00% ( 44/ 55) @CodeIgniter.Libraries::CI_Security Methods: 28.57% ( 6/21) Lines: 42.16% (129/306) @CodeIgniter.Libraries::CI_Table Methods: 85.71% (12/14) Lines: 89.94% (152/169) @CodeIgniter.Libraries::CI_Typography Methods: 100.00% ( 5/ 5) Lines: 100.00% (127/127) @CodeIgniter.Libraries::CI_URI Methods: 54.55% (12/22) Lines: 36.05% ( 62/172) @CodeIgniter.Libraries::CI_Upload Methods: 53.57% (15/28) Lines: 46.10% (201/436) @CodeIgniter.Libraries::CI_User_agent Methods: 72.00% (18/25) Lines: 89.01% (162/182) @CodeIgniter.Libraries::CI_Utf8 Methods: 20.00% ( 1/ 5) Lines: 70.97% ( 22/ 31) travis_time:end:2385ab10:start=1557943638475926190,finish=1557943663817682969,duration=25341756779 The command "php -d zend.enable_gc=0 -d date.timezone=UTC -d mbstring.func_overload=7 -d mbstring.internal_encoding=UTF-8 vendor/bin/phpunit --coverage-text --configuration tests/travis/$DB.phpunit.xml" exited with 1. Done. Your build exited with 1. |