1--TEST-- 2Test is_readable() function: basic functionality 3--SKIPIF-- 4<?php 5if (substr(PHP_OS, 0, 3) != 'WIN') { 6 die('skip only for Windows'); 7} 8?> 9--FILE-- 10<?php 11/* Prototype: bool is_readable ( string $filename ); 12 Description: Tells whether the filename is readable 13*/ 14 15// include common file test functions 16require dirname(__FILE__).'/file.inc'; 17 18echo "*** Testing is_readable(): basic functionality ***\n"; 19 20// create a file 21$filename = dirname(__FILE__)."/is_readable.tmp"; 22create_file($filename); 23 24$counter = 1; 25/* loop to check if the file with new mode is readable 26 using is_readable() */ 27for($mode = 0000; $mode <= 0777; $mode++) { 28 echo "-- Changing mode of file to $mode --\n"; 29 chmod($filename, $mode); // change mode of file 30 var_dump( is_readable($filename) ); 31 $counter++; 32 clearstatcache(); 33} 34 35// delete the temp file 36delete_file($filename); 37 38echo "Done\n"; 39?> 40--EXPECTF-- 41*** Testing is_readable(): basic functionality *** 42-- Changing mode of file to 0 -- 43bool(true) 44-- Changing mode of file to 1 -- 45bool(true) 46-- Changing mode of file to 2 -- 47bool(true) 48-- Changing mode of file to 3 -- 49bool(true) 50-- Changing mode of file to 4 -- 51bool(true) 52-- Changing mode of file to 5 -- 53bool(true) 54-- Changing mode of file to 6 -- 55bool(true) 56-- Changing mode of file to 7 -- 57bool(true) 58-- Changing mode of file to 8 -- 59bool(true) 60-- Changing mode of file to 9 -- 61bool(true) 62-- Changing mode of file to 10 -- 63bool(true) 64-- Changing mode of file to 11 -- 65bool(true) 66-- Changing mode of file to 12 -- 67bool(true) 68-- Changing mode of file to 13 -- 69bool(true) 70-- Changing mode of file to 14 -- 71bool(true) 72-- Changing mode of file to 15 -- 73bool(true) 74-- Changing mode of file to 16 -- 75bool(true) 76-- Changing mode of file to 17 -- 77bool(true) 78-- Changing mode of file to 18 -- 79bool(true) 80-- Changing mode of file to 19 -- 81bool(true) 82-- Changing mode of file to 20 -- 83bool(true) 84-- Changing mode of file to 21 -- 85bool(true) 86-- Changing mode of file to 22 -- 87bool(true) 88-- Changing mode of file to 23 -- 89bool(true) 90-- Changing mode of file to 24 -- 91bool(true) 92-- Changing mode of file to 25 -- 93bool(true) 94-- Changing mode of file to 26 -- 95bool(true) 96-- Changing mode of file to 27 -- 97bool(true) 98-- Changing mode of file to 28 -- 99bool(true) 100-- Changing mode of file to 29 -- 101bool(true) 102-- Changing mode of file to 30 -- 103bool(true) 104-- Changing mode of file to 31 -- 105bool(true) 106-- Changing mode of file to 32 -- 107bool(true) 108-- Changing mode of file to 33 -- 109bool(true) 110-- Changing mode of file to 34 -- 111bool(true) 112-- Changing mode of file to 35 -- 113bool(true) 114-- Changing mode of file to 36 -- 115bool(true) 116-- Changing mode of file to 37 -- 117bool(true) 118-- Changing mode of file to 38 -- 119bool(true) 120-- Changing mode of file to 39 -- 121bool(true) 122-- Changing mode of file to 40 -- 123bool(true) 124-- Changing mode of file to 41 -- 125bool(true) 126-- Changing mode of file to 42 -- 127bool(true) 128-- Changing mode of file to 43 -- 129bool(true) 130-- Changing mode of file to 44 -- 131bool(true) 132-- Changing mode of file to 45 -- 133bool(true) 134-- Changing mode of file to 46 -- 135bool(true) 136-- Changing mode of file to 47 -- 137bool(true) 138-- Changing mode of file to 48 -- 139bool(true) 140-- Changing mode of file to 49 -- 141bool(true) 142-- Changing mode of file to 50 -- 143bool(true) 144-- Changing mode of file to 51 -- 145bool(true) 146-- Changing mode of file to 52 -- 147bool(true) 148-- Changing mode of file to 53 -- 149bool(true) 150-- Changing mode of file to 54 -- 151bool(true) 152-- Changing mode of file to 55 -- 153bool(true) 154-- Changing mode of file to 56 -- 155bool(true) 156-- Changing mode of file to 57 -- 157bool(true) 158-- Changing mode of file to 58 -- 159bool(true) 160-- Changing mode of file to 59 -- 161bool(true) 162-- Changing mode of file to 60 -- 163bool(true) 164-- Changing mode of file to 61 -- 165bool(true) 166-- Changing mode of file to 62 -- 167bool(true) 168-- Changing mode of file to 63 -- 169bool(true) 170-- Changing mode of file to 64 -- 171bool(true) 172-- Changing mode of file to 65 -- 173bool(true) 174-- Changing mode of file to 66 -- 175bool(true) 176-- Changing mode of file to 67 -- 177bool(true) 178-- Changing mode of file to 68 -- 179bool(true) 180-- Changing mode of file to 69 -- 181bool(true) 182-- Changing mode of file to 70 -- 183bool(true) 184-- Changing mode of file to 71 -- 185bool(true) 186-- Changing mode of file to 72 -- 187bool(true) 188-- Changing mode of file to 73 -- 189bool(true) 190-- Changing mode of file to 74 -- 191bool(true) 192-- Changing mode of file to 75 -- 193bool(true) 194-- Changing mode of file to 76 -- 195bool(true) 196-- Changing mode of file to 77 -- 197bool(true) 198-- Changing mode of file to 78 -- 199bool(true) 200-- Changing mode of file to 79 -- 201bool(true) 202-- Changing mode of file to 80 -- 203bool(true) 204-- Changing mode of file to 81 -- 205bool(true) 206-- Changing mode of file to 82 -- 207bool(true) 208-- Changing mode of file to 83 -- 209bool(true) 210-- Changing mode of file to 84 -- 211bool(true) 212-- Changing mode of file to 85 -- 213bool(true) 214-- Changing mode of file to 86 -- 215bool(true) 216-- Changing mode of file to 87 -- 217bool(true) 218-- Changing mode of file to 88 -- 219bool(true) 220-- Changing mode of file to 89 -- 221bool(true) 222-- Changing mode of file to 90 -- 223bool(true) 224-- Changing mode of file to 91 -- 225bool(true) 226-- Changing mode of file to 92 -- 227bool(true) 228-- Changing mode of file to 93 -- 229bool(true) 230-- Changing mode of file to 94 -- 231bool(true) 232-- Changing mode of file to 95 -- 233bool(true) 234-- Changing mode of file to 96 -- 235bool(true) 236-- Changing mode of file to 97 -- 237bool(true) 238-- Changing mode of file to 98 -- 239bool(true) 240-- Changing mode of file to 99 -- 241bool(true) 242-- Changing mode of file to 100 -- 243bool(true) 244-- Changing mode of file to 101 -- 245bool(true) 246-- Changing mode of file to 102 -- 247bool(true) 248-- Changing mode of file to 103 -- 249bool(true) 250-- Changing mode of file to 104 -- 251bool(true) 252-- Changing mode of file to 105 -- 253bool(true) 254-- Changing mode of file to 106 -- 255bool(true) 256-- Changing mode of file to 107 -- 257bool(true) 258-- Changing mode of file to 108 -- 259bool(true) 260-- Changing mode of file to 109 -- 261bool(true) 262-- Changing mode of file to 110 -- 263bool(true) 264-- Changing mode of file to 111 -- 265bool(true) 266-- Changing mode of file to 112 -- 267bool(true) 268-- Changing mode of file to 113 -- 269bool(true) 270-- Changing mode of file to 114 -- 271bool(true) 272-- Changing mode of file to 115 -- 273bool(true) 274-- Changing mode of file to 116 -- 275bool(true) 276-- Changing mode of file to 117 -- 277bool(true) 278-- Changing mode of file to 118 -- 279bool(true) 280-- Changing mode of file to 119 -- 281bool(true) 282-- Changing mode of file to 120 -- 283bool(true) 284-- Changing mode of file to 121 -- 285bool(true) 286-- Changing mode of file to 122 -- 287bool(true) 288-- Changing mode of file to 123 -- 289bool(true) 290-- Changing mode of file to 124 -- 291bool(true) 292-- Changing mode of file to 125 -- 293bool(true) 294-- Changing mode of file to 126 -- 295bool(true) 296-- Changing mode of file to 127 -- 297bool(true) 298-- Changing mode of file to 128 -- 299bool(true) 300-- Changing mode of file to 129 -- 301bool(true) 302-- Changing mode of file to 130 -- 303bool(true) 304-- Changing mode of file to 131 -- 305bool(true) 306-- Changing mode of file to 132 -- 307bool(true) 308-- Changing mode of file to 133 -- 309bool(true) 310-- Changing mode of file to 134 -- 311bool(true) 312-- Changing mode of file to 135 -- 313bool(true) 314-- Changing mode of file to 136 -- 315bool(true) 316-- Changing mode of file to 137 -- 317bool(true) 318-- Changing mode of file to 138 -- 319bool(true) 320-- Changing mode of file to 139 -- 321bool(true) 322-- Changing mode of file to 140 -- 323bool(true) 324-- Changing mode of file to 141 -- 325bool(true) 326-- Changing mode of file to 142 -- 327bool(true) 328-- Changing mode of file to 143 -- 329bool(true) 330-- Changing mode of file to 144 -- 331bool(true) 332-- Changing mode of file to 145 -- 333bool(true) 334-- Changing mode of file to 146 -- 335bool(true) 336-- Changing mode of file to 147 -- 337bool(true) 338-- Changing mode of file to 148 -- 339bool(true) 340-- Changing mode of file to 149 -- 341bool(true) 342-- Changing mode of file to 150 -- 343bool(true) 344-- Changing mode of file to 151 -- 345bool(true) 346-- Changing mode of file to 152 -- 347bool(true) 348-- Changing mode of file to 153 -- 349bool(true) 350-- Changing mode of file to 154 -- 351bool(true) 352-- Changing mode of file to 155 -- 353bool(true) 354-- Changing mode of file to 156 -- 355bool(true) 356-- Changing mode of file to 157 -- 357bool(true) 358-- Changing mode of file to 158 -- 359bool(true) 360-- Changing mode of file to 159 -- 361bool(true) 362-- Changing mode of file to 160 -- 363bool(true) 364-- Changing mode of file to 161 -- 365bool(true) 366-- Changing mode of file to 162 -- 367bool(true) 368-- Changing mode of file to 163 -- 369bool(true) 370-- Changing mode of file to 164 -- 371bool(true) 372-- Changing mode of file to 165 -- 373bool(true) 374-- Changing mode of file to 166 -- 375bool(true) 376-- Changing mode of file to 167 -- 377bool(true) 378-- Changing mode of file to 168 -- 379bool(true) 380-- Changing mode of file to 169 -- 381bool(true) 382-- Changing mode of file to 170 -- 383bool(true) 384-- Changing mode of file to 171 -- 385bool(true) 386-- Changing mode of file to 172 -- 387bool(true) 388-- Changing mode of file to 173 -- 389bool(true) 390-- Changing mode of file to 174 -- 391bool(true) 392-- Changing mode of file to 175 -- 393bool(true) 394-- Changing mode of file to 176 -- 395bool(true) 396-- Changing mode of file to 177 -- 397bool(true) 398-- Changing mode of file to 178 -- 399bool(true) 400-- Changing mode of file to 179 -- 401bool(true) 402-- Changing mode of file to 180 -- 403bool(true) 404-- Changing mode of file to 181 -- 405bool(true) 406-- Changing mode of file to 182 -- 407bool(true) 408-- Changing mode of file to 183 -- 409bool(true) 410-- Changing mode of file to 184 -- 411bool(true) 412-- Changing mode of file to 185 -- 413bool(true) 414-- Changing mode of file to 186 -- 415bool(true) 416-- Changing mode of file to 187 -- 417bool(true) 418-- Changing mode of file to 188 -- 419bool(true) 420-- Changing mode of file to 189 -- 421bool(true) 422-- Changing mode of file to 190 -- 423bool(true) 424-- Changing mode of file to 191 -- 425bool(true) 426-- Changing mode of file to 192 -- 427bool(true) 428-- Changing mode of file to 193 -- 429bool(true) 430-- Changing mode of file to 194 -- 431bool(true) 432-- Changing mode of file to 195 -- 433bool(true) 434-- Changing mode of file to 196 -- 435bool(true) 436-- Changing mode of file to 197 -- 437bool(true) 438-- Changing mode of file to 198 -- 439bool(true) 440-- Changing mode of file to 199 -- 441bool(true) 442-- Changing mode of file to 200 -- 443bool(true) 444-- Changing mode of file to 201 -- 445bool(true) 446-- Changing mode of file to 202 -- 447bool(true) 448-- Changing mode of file to 203 -- 449bool(true) 450-- Changing mode of file to 204 -- 451bool(true) 452-- Changing mode of file to 205 -- 453bool(true) 454-- Changing mode of file to 206 -- 455bool(true) 456-- Changing mode of file to 207 -- 457bool(true) 458-- Changing mode of file to 208 -- 459bool(true) 460-- Changing mode of file to 209 -- 461bool(true) 462-- Changing mode of file to 210 -- 463bool(true) 464-- Changing mode of file to 211 -- 465bool(true) 466-- Changing mode of file to 212 -- 467bool(true) 468-- Changing mode of file to 213 -- 469bool(true) 470-- Changing mode of file to 214 -- 471bool(true) 472-- Changing mode of file to 215 -- 473bool(true) 474-- Changing mode of file to 216 -- 475bool(true) 476-- Changing mode of file to 217 -- 477bool(true) 478-- Changing mode of file to 218 -- 479bool(true) 480-- Changing mode of file to 219 -- 481bool(true) 482-- Changing mode of file to 220 -- 483bool(true) 484-- Changing mode of file to 221 -- 485bool(true) 486-- Changing mode of file to 222 -- 487bool(true) 488-- Changing mode of file to 223 -- 489bool(true) 490-- Changing mode of file to 224 -- 491bool(true) 492-- Changing mode of file to 225 -- 493bool(true) 494-- Changing mode of file to 226 -- 495bool(true) 496-- Changing mode of file to 227 -- 497bool(true) 498-- Changing mode of file to 228 -- 499bool(true) 500-- Changing mode of file to 229 -- 501bool(true) 502-- Changing mode of file to 230 -- 503bool(true) 504-- Changing mode of file to 231 -- 505bool(true) 506-- Changing mode of file to 232 -- 507bool(true) 508-- Changing mode of file to 233 -- 509bool(true) 510-- Changing mode of file to 234 -- 511bool(true) 512-- Changing mode of file to 235 -- 513bool(true) 514-- Changing mode of file to 236 -- 515bool(true) 516-- Changing mode of file to 237 -- 517bool(true) 518-- Changing mode of file to 238 -- 519bool(true) 520-- Changing mode of file to 239 -- 521bool(true) 522-- Changing mode of file to 240 -- 523bool(true) 524-- Changing mode of file to 241 -- 525bool(true) 526-- Changing mode of file to 242 -- 527bool(true) 528-- Changing mode of file to 243 -- 529bool(true) 530-- Changing mode of file to 244 -- 531bool(true) 532-- Changing mode of file to 245 -- 533bool(true) 534-- Changing mode of file to 246 -- 535bool(true) 536-- Changing mode of file to 247 -- 537bool(true) 538-- Changing mode of file to 248 -- 539bool(true) 540-- Changing mode of file to 249 -- 541bool(true) 542-- Changing mode of file to 250 -- 543bool(true) 544-- Changing mode of file to 251 -- 545bool(true) 546-- Changing mode of file to 252 -- 547bool(true) 548-- Changing mode of file to 253 -- 549bool(true) 550-- Changing mode of file to 254 -- 551bool(true) 552-- Changing mode of file to 255 -- 553bool(true) 554-- Changing mode of file to 256 -- 555bool(true) 556-- Changing mode of file to 257 -- 557bool(true) 558-- Changing mode of file to 258 -- 559bool(true) 560-- Changing mode of file to 259 -- 561bool(true) 562-- Changing mode of file to 260 -- 563bool(true) 564-- Changing mode of file to 261 -- 565bool(true) 566-- Changing mode of file to 262 -- 567bool(true) 568-- Changing mode of file to 263 -- 569bool(true) 570-- Changing mode of file to 264 -- 571bool(true) 572-- Changing mode of file to 265 -- 573bool(true) 574-- Changing mode of file to 266 -- 575bool(true) 576-- Changing mode of file to 267 -- 577bool(true) 578-- Changing mode of file to 268 -- 579bool(true) 580-- Changing mode of file to 269 -- 581bool(true) 582-- Changing mode of file to 270 -- 583bool(true) 584-- Changing mode of file to 271 -- 585bool(true) 586-- Changing mode of file to 272 -- 587bool(true) 588-- Changing mode of file to 273 -- 589bool(true) 590-- Changing mode of file to 274 -- 591bool(true) 592-- Changing mode of file to 275 -- 593bool(true) 594-- Changing mode of file to 276 -- 595bool(true) 596-- Changing mode of file to 277 -- 597bool(true) 598-- Changing mode of file to 278 -- 599bool(true) 600-- Changing mode of file to 279 -- 601bool(true) 602-- Changing mode of file to 280 -- 603bool(true) 604-- Changing mode of file to 281 -- 605bool(true) 606-- Changing mode of file to 282 -- 607bool(true) 608-- Changing mode of file to 283 -- 609bool(true) 610-- Changing mode of file to 284 -- 611bool(true) 612-- Changing mode of file to 285 -- 613bool(true) 614-- Changing mode of file to 286 -- 615bool(true) 616-- Changing mode of file to 287 -- 617bool(true) 618-- Changing mode of file to 288 -- 619bool(true) 620-- Changing mode of file to 289 -- 621bool(true) 622-- Changing mode of file to 290 -- 623bool(true) 624-- Changing mode of file to 291 -- 625bool(true) 626-- Changing mode of file to 292 -- 627bool(true) 628-- Changing mode of file to 293 -- 629bool(true) 630-- Changing mode of file to 294 -- 631bool(true) 632-- Changing mode of file to 295 -- 633bool(true) 634-- Changing mode of file to 296 -- 635bool(true) 636-- Changing mode of file to 297 -- 637bool(true) 638-- Changing mode of file to 298 -- 639bool(true) 640-- Changing mode of file to 299 -- 641bool(true) 642-- Changing mode of file to 300 -- 643bool(true) 644-- Changing mode of file to 301 -- 645bool(true) 646-- Changing mode of file to 302 -- 647bool(true) 648-- Changing mode of file to 303 -- 649bool(true) 650-- Changing mode of file to 304 -- 651bool(true) 652-- Changing mode of file to 305 -- 653bool(true) 654-- Changing mode of file to 306 -- 655bool(true) 656-- Changing mode of file to 307 -- 657bool(true) 658-- Changing mode of file to 308 -- 659bool(true) 660-- Changing mode of file to 309 -- 661bool(true) 662-- Changing mode of file to 310 -- 663bool(true) 664-- Changing mode of file to 311 -- 665bool(true) 666-- Changing mode of file to 312 -- 667bool(true) 668-- Changing mode of file to 313 -- 669bool(true) 670-- Changing mode of file to 314 -- 671bool(true) 672-- Changing mode of file to 315 -- 673bool(true) 674-- Changing mode of file to 316 -- 675bool(true) 676-- Changing mode of file to 317 -- 677bool(true) 678-- Changing mode of file to 318 -- 679bool(true) 680-- Changing mode of file to 319 -- 681bool(true) 682-- Changing mode of file to 320 -- 683bool(true) 684-- Changing mode of file to 321 -- 685bool(true) 686-- Changing mode of file to 322 -- 687bool(true) 688-- Changing mode of file to 323 -- 689bool(true) 690-- Changing mode of file to 324 -- 691bool(true) 692-- Changing mode of file to 325 -- 693bool(true) 694-- Changing mode of file to 326 -- 695bool(true) 696-- Changing mode of file to 327 -- 697bool(true) 698-- Changing mode of file to 328 -- 699bool(true) 700-- Changing mode of file to 329 -- 701bool(true) 702-- Changing mode of file to 330 -- 703bool(true) 704-- Changing mode of file to 331 -- 705bool(true) 706-- Changing mode of file to 332 -- 707bool(true) 708-- Changing mode of file to 333 -- 709bool(true) 710-- Changing mode of file to 334 -- 711bool(true) 712-- Changing mode of file to 335 -- 713bool(true) 714-- Changing mode of file to 336 -- 715bool(true) 716-- Changing mode of file to 337 -- 717bool(true) 718-- Changing mode of file to 338 -- 719bool(true) 720-- Changing mode of file to 339 -- 721bool(true) 722-- Changing mode of file to 340 -- 723bool(true) 724-- Changing mode of file to 341 -- 725bool(true) 726-- Changing mode of file to 342 -- 727bool(true) 728-- Changing mode of file to 343 -- 729bool(true) 730-- Changing mode of file to 344 -- 731bool(true) 732-- Changing mode of file to 345 -- 733bool(true) 734-- Changing mode of file to 346 -- 735bool(true) 736-- Changing mode of file to 347 -- 737bool(true) 738-- Changing mode of file to 348 -- 739bool(true) 740-- Changing mode of file to 349 -- 741bool(true) 742-- Changing mode of file to 350 -- 743bool(true) 744-- Changing mode of file to 351 -- 745bool(true) 746-- Changing mode of file to 352 -- 747bool(true) 748-- Changing mode of file to 353 -- 749bool(true) 750-- Changing mode of file to 354 -- 751bool(true) 752-- Changing mode of file to 355 -- 753bool(true) 754-- Changing mode of file to 356 -- 755bool(true) 756-- Changing mode of file to 357 -- 757bool(true) 758-- Changing mode of file to 358 -- 759bool(true) 760-- Changing mode of file to 359 -- 761bool(true) 762-- Changing mode of file to 360 -- 763bool(true) 764-- Changing mode of file to 361 -- 765bool(true) 766-- Changing mode of file to 362 -- 767bool(true) 768-- Changing mode of file to 363 -- 769bool(true) 770-- Changing mode of file to 364 -- 771bool(true) 772-- Changing mode of file to 365 -- 773bool(true) 774-- Changing mode of file to 366 -- 775bool(true) 776-- Changing mode of file to 367 -- 777bool(true) 778-- Changing mode of file to 368 -- 779bool(true) 780-- Changing mode of file to 369 -- 781bool(true) 782-- Changing mode of file to 370 -- 783bool(true) 784-- Changing mode of file to 371 -- 785bool(true) 786-- Changing mode of file to 372 -- 787bool(true) 788-- Changing mode of file to 373 -- 789bool(true) 790-- Changing mode of file to 374 -- 791bool(true) 792-- Changing mode of file to 375 -- 793bool(true) 794-- Changing mode of file to 376 -- 795bool(true) 796-- Changing mode of file to 377 -- 797bool(true) 798-- Changing mode of file to 378 -- 799bool(true) 800-- Changing mode of file to 379 -- 801bool(true) 802-- Changing mode of file to 380 -- 803bool(true) 804-- Changing mode of file to 381 -- 805bool(true) 806-- Changing mode of file to 382 -- 807bool(true) 808-- Changing mode of file to 383 -- 809bool(true) 810-- Changing mode of file to 384 -- 811bool(true) 812-- Changing mode of file to 385 -- 813bool(true) 814-- Changing mode of file to 386 -- 815bool(true) 816-- Changing mode of file to 387 -- 817bool(true) 818-- Changing mode of file to 388 -- 819bool(true) 820-- Changing mode of file to 389 -- 821bool(true) 822-- Changing mode of file to 390 -- 823bool(true) 824-- Changing mode of file to 391 -- 825bool(true) 826-- Changing mode of file to 392 -- 827bool(true) 828-- Changing mode of file to 393 -- 829bool(true) 830-- Changing mode of file to 394 -- 831bool(true) 832-- Changing mode of file to 395 -- 833bool(true) 834-- Changing mode of file to 396 -- 835bool(true) 836-- Changing mode of file to 397 -- 837bool(true) 838-- Changing mode of file to 398 -- 839bool(true) 840-- Changing mode of file to 399 -- 841bool(true) 842-- Changing mode of file to 400 -- 843bool(true) 844-- Changing mode of file to 401 -- 845bool(true) 846-- Changing mode of file to 402 -- 847bool(true) 848-- Changing mode of file to 403 -- 849bool(true) 850-- Changing mode of file to 404 -- 851bool(true) 852-- Changing mode of file to 405 -- 853bool(true) 854-- Changing mode of file to 406 -- 855bool(true) 856-- Changing mode of file to 407 -- 857bool(true) 858-- Changing mode of file to 408 -- 859bool(true) 860-- Changing mode of file to 409 -- 861bool(true) 862-- Changing mode of file to 410 -- 863bool(true) 864-- Changing mode of file to 411 -- 865bool(true) 866-- Changing mode of file to 412 -- 867bool(true) 868-- Changing mode of file to 413 -- 869bool(true) 870-- Changing mode of file to 414 -- 871bool(true) 872-- Changing mode of file to 415 -- 873bool(true) 874-- Changing mode of file to 416 -- 875bool(true) 876-- Changing mode of file to 417 -- 877bool(true) 878-- Changing mode of file to 418 -- 879bool(true) 880-- Changing mode of file to 419 -- 881bool(true) 882-- Changing mode of file to 420 -- 883bool(true) 884-- Changing mode of file to 421 -- 885bool(true) 886-- Changing mode of file to 422 -- 887bool(true) 888-- Changing mode of file to 423 -- 889bool(true) 890-- Changing mode of file to 424 -- 891bool(true) 892-- Changing mode of file to 425 -- 893bool(true) 894-- Changing mode of file to 426 -- 895bool(true) 896-- Changing mode of file to 427 -- 897bool(true) 898-- Changing mode of file to 428 -- 899bool(true) 900-- Changing mode of file to 429 -- 901bool(true) 902-- Changing mode of file to 430 -- 903bool(true) 904-- Changing mode of file to 431 -- 905bool(true) 906-- Changing mode of file to 432 -- 907bool(true) 908-- Changing mode of file to 433 -- 909bool(true) 910-- Changing mode of file to 434 -- 911bool(true) 912-- Changing mode of file to 435 -- 913bool(true) 914-- Changing mode of file to 436 -- 915bool(true) 916-- Changing mode of file to 437 -- 917bool(true) 918-- Changing mode of file to 438 -- 919bool(true) 920-- Changing mode of file to 439 -- 921bool(true) 922-- Changing mode of file to 440 -- 923bool(true) 924-- Changing mode of file to 441 -- 925bool(true) 926-- Changing mode of file to 442 -- 927bool(true) 928-- Changing mode of file to 443 -- 929bool(true) 930-- Changing mode of file to 444 -- 931bool(true) 932-- Changing mode of file to 445 -- 933bool(true) 934-- Changing mode of file to 446 -- 935bool(true) 936-- Changing mode of file to 447 -- 937bool(true) 938-- Changing mode of file to 448 -- 939bool(true) 940-- Changing mode of file to 449 -- 941bool(true) 942-- Changing mode of file to 450 -- 943bool(true) 944-- Changing mode of file to 451 -- 945bool(true) 946-- Changing mode of file to 452 -- 947bool(true) 948-- Changing mode of file to 453 -- 949bool(true) 950-- Changing mode of file to 454 -- 951bool(true) 952-- Changing mode of file to 455 -- 953bool(true) 954-- Changing mode of file to 456 -- 955bool(true) 956-- Changing mode of file to 457 -- 957bool(true) 958-- Changing mode of file to 458 -- 959bool(true) 960-- Changing mode of file to 459 -- 961bool(true) 962-- Changing mode of file to 460 -- 963bool(true) 964-- Changing mode of file to 461 -- 965bool(true) 966-- Changing mode of file to 462 -- 967bool(true) 968-- Changing mode of file to 463 -- 969bool(true) 970-- Changing mode of file to 464 -- 971bool(true) 972-- Changing mode of file to 465 -- 973bool(true) 974-- Changing mode of file to 466 -- 975bool(true) 976-- Changing mode of file to 467 -- 977bool(true) 978-- Changing mode of file to 468 -- 979bool(true) 980-- Changing mode of file to 469 -- 981bool(true) 982-- Changing mode of file to 470 -- 983bool(true) 984-- Changing mode of file to 471 -- 985bool(true) 986-- Changing mode of file to 472 -- 987bool(true) 988-- Changing mode of file to 473 -- 989bool(true) 990-- Changing mode of file to 474 -- 991bool(true) 992-- Changing mode of file to 475 -- 993bool(true) 994-- Changing mode of file to 476 -- 995bool(true) 996-- Changing mode of file to 477 -- 997bool(true) 998-- Changing mode of file to 478 -- 999bool(true) 1000-- Changing mode of file to 479 -- 1001bool(true) 1002-- Changing mode of file to 480 -- 1003bool(true) 1004-- Changing mode of file to 481 -- 1005bool(true) 1006-- Changing mode of file to 482 -- 1007bool(true) 1008-- Changing mode of file to 483 -- 1009bool(true) 1010-- Changing mode of file to 484 -- 1011bool(true) 1012-- Changing mode of file to 485 -- 1013bool(true) 1014-- Changing mode of file to 486 -- 1015bool(true) 1016-- Changing mode of file to 487 -- 1017bool(true) 1018-- Changing mode of file to 488 -- 1019bool(true) 1020-- Changing mode of file to 489 -- 1021bool(true) 1022-- Changing mode of file to 490 -- 1023bool(true) 1024-- Changing mode of file to 491 -- 1025bool(true) 1026-- Changing mode of file to 492 -- 1027bool(true) 1028-- Changing mode of file to 493 -- 1029bool(true) 1030-- Changing mode of file to 494 -- 1031bool(true) 1032-- Changing mode of file to 495 -- 1033bool(true) 1034-- Changing mode of file to 496 -- 1035bool(true) 1036-- Changing mode of file to 497 -- 1037bool(true) 1038-- Changing mode of file to 498 -- 1039bool(true) 1040-- Changing mode of file to 499 -- 1041bool(true) 1042-- Changing mode of file to 500 -- 1043bool(true) 1044-- Changing mode of file to 501 -- 1045bool(true) 1046-- Changing mode of file to 502 -- 1047bool(true) 1048-- Changing mode of file to 503 -- 1049bool(true) 1050-- Changing mode of file to 504 -- 1051bool(true) 1052-- Changing mode of file to 505 -- 1053bool(true) 1054-- Changing mode of file to 506 -- 1055bool(true) 1056-- Changing mode of file to 507 -- 1057bool(true) 1058-- Changing mode of file to 508 -- 1059bool(true) 1060-- Changing mode of file to 509 -- 1061bool(true) 1062-- Changing mode of file to 510 -- 1063bool(true) 1064-- Changing mode of file to 511 -- 1065bool(true) 1066Done 1067