Lines Matching full:cygwin
41 foreach (qw(Unix Win32 VMS OS2 Mac Epoc Cygwin)) {
724 [ "Cygwin->case_tolerant()", '1' ],
725 [ "Cygwin->catfile('a','b','c')", 'a/b/c' ],
726 [ "Cygwin->catfile('a','b','./c')", 'a/b/c' ],
727 [ "Cygwin->catfile('./a','b','c')", 'a/b/c' ],
728 [ "Cygwin->catfile('c')", 'c' ],
729 [ "Cygwin->catfile('./c')", 'c' ],
731 [ "Cygwin->splitpath('file')", ',,file' ],
732 [ "Cygwin->splitpath('/d1/d2/d3/')", ',/d1/d2/d3/,' ],
733 [ "Cygwin->splitpath('d1/d2/d3/')", ',d1/d2/d3/,' ],
734 [ "Cygwin->splitpath('/d1/d2/d3/.')", ',/d1/d2/d3/.,' ],
735 [ "Cygwin->splitpath('/d1/d2/d3/..')", ',/d1/d2/d3/..,' ],
736 [ "Cygwin->splitpath('/d1/d2/d3/.file')", ',/d1/d2/d3/,.file' ],
737 [ "Cygwin->splitpath('d1/d2/d3/file')", ',d1/d2/d3/,file' ],
738 [ "Cygwin->splitpath('/../../d1/')", ',/../../d1/,' ],
739 [ "Cygwin->splitpath('/././d1/')", ',/././d1/,' ],
741 [ "Cygwin->catpath('','','file')", 'file' ],
742 [ "Cygwin->catpath('','/d1/d2/d3/','')", '/d1/d2/d3/' ],
743 [ "Cygwin->catpath('','d1/d2/d3/','')", 'd1/d2/d3/' ],
744 [ "Cygwin->catpath('','/d1/d2/d3/.','')", '/d1/d2/d3/.' ],
745 [ "Cygwin->catpath('','/d1/d2/d3/..','')", '/d1/d2/d3/..' ],
746 [ "Cygwin->catpath('','/d1/d2/d3/','.file')", '/d1/d2/d3/.file' ],
747 [ "Cygwin->catpath('','d1/d2/d3/','file')", 'd1/d2/d3/file' ],
748 [ "Cygwin->catpath('','/../../d1/','')", '/../../d1/' ],
749 [ "Cygwin->catpath('','/././d1/','')", '/././d1/' ],
750 [ "Cygwin->catpath('d1','d2/d3/','')", 'd2/d3/' ],
751 [ "Cygwin->catpath('d1','d2','d3/')", 'd2/d3/' ],
753 [ "Cygwin->splitdir('')", '' ],
754 [ "Cygwin->splitdir('/d1/d2/d3/')", ',d1,d2,d3,' ],
755 [ "Cygwin->splitdir('d1/d2/d3/')", 'd1,d2,d3,' ],
756 [ "Cygwin->splitdir('/d1/d2/d3')", ',d1,d2,d3' ],
757 [ "Cygwin->splitdir('d1/d2/d3')", 'd1,d2,d3' ],
759 [ "Cygwin->catdir()", '' ],
760 [ "Cygwin->catdir('/')", '/' ],
761 [ "Cygwin->catdir('','d1','d2','d3','')", '/d1/d2/d3' ],
762 [ "Cygwin->catdir('d1','d2','d3','')", 'd1/d2/d3' ],
763 [ "Cygwin->catdir('','d1','d2','d3')", '/d1/d2/d3' ],
764 [ "Cygwin->catdir('d1','d2','d3')", 'd1/d2/d3' ],
765 [ "Cygwin->catdir('/','d2/d3')", '/d2/d3' ],
767 [ "Cygwin->canonpath('///../../..//./././a//b/.././c/././')", '/a/b/../c' ],
768 [ "Cygwin->canonpath('')", '' ],
769 [ "Cygwin->canonpath('a/../../b/c')", 'a/../../b/c' ],
770 [ "Cygwin->canonpath('/.')", '/' ],
771 [ "Cygwin->canonpath('/./')", '/' ],
772 [ "Cygwin->canonpath('/a/./')", '/a' ],
773 [ "Cygwin->canonpath('/a/.')", '/a' ],
774 [ "Cygwin->canonpath('/../../')", '/' ],
775 [ "Cygwin->canonpath('/../..')", '/' ],
777 [ "Cygwin->abs2rel('/t1/t2/t3','/t1/t2/t3')", '.' ],
778 [ "Cygwin->abs2rel('/t1/t2/t4','/t1/t2/t3')", '../t4' ],
779 [ "Cygwin->abs2rel('/t1/t2','/t1/t2/t3')", '..' ],
780 [ "Cygwin->abs2rel('/t1/t2/t3/t4','/t1/t2/t3')", 't4' ],
781 [ "Cygwin->abs2rel('/t4/t5/t6','/t1/t2/t3')", '../../../t4/t5/t6' ],
782 #[ "Cygwin->abs2rel('../t4','/t1/t2/t3')", '../t4' ],
783 [ "Cygwin->abs2rel('/','/t1/t2/t3')", '../../..' ],
784 [ "Cygwin->abs2rel('///','/t1/t2/t3')", '../../..' ],
785 [ "Cygwin->abs2rel('/.','/t1/t2/t3')", '../../..' ],
786 [ "Cygwin->abs2rel('/./','/t1/t2/t3')", '../../..' ],
787 #[ "Cygwin->abs2rel('../t4','/t1/t2/t3')", '../t4' ],
788 [ "Cygwin->abs2rel('/t1/t2/t3', '/')", 't1/t2/t3' ],
789 [ "Cygwin->abs2rel('/t1/t2/t3', '/t1')", 't2/t3' ],
790 [ "Cygwin->abs2rel('t1/t2/t3', 't1')", 't2/t3' ],
791 [ "Cygwin->abs2rel('t1/t2/t3', 't4')", '../t1/t2/t3' ],
793 [ "Cygwin->rel2abs('t4','/t1/t2/t3')", '/t1/t2/t3/t4' ],
794 [ "Cygwin->rel2abs('t4/t5','/t1/t2/t3')", '/t1/t2/t3/t4/t5' ],
795 [ "Cygwin->rel2abs('.','/t1/t2/t3')", '/t1/t2/t3' ],
796 [ "Cygwin->rel2abs('..','/t1/t2/t3')", '/t1/t2/t3/..' ],
797 [ "Cygwin->rel2abs('../t4','/t1/t2/t3')", '/t1/t2/t3/../t4' ],
798 [ "Cygwin->rel2abs('/t1','/t1/t2/t3')", '/t1' ],
799 [ "Cygwin->rel2abs('//t1/t2/t3','/foo')", '//t1/t2/t3' ],