Lines Matching full:cygwin
7 skip_all('cygwin specific test') unless $^O eq 'cygwin';
12 is(Cygwin::winpid_to_pid(Cygwin::pid_to_winpid($$)), $$,
17 skip "test not run from cygwin process", 1 if $parent <= 1;
18 is(Cygwin::winpid_to_pid(Cygwin::pid_to_winpid($parent)), $parent,
27 is(Cygwin::winpid_to_pid($catwinpid), $catpid, "winpid to pid");
28 is(Cygwin::pid_to_winpid($catpid), $catwinpid, "pid to winpid");
31 is(Cygwin::win_to_posix_path("t\\lib"), "t/lib", "win to posix path: t/lib");
32 is(Cygwin::posix_to_win_path("t/lib"), "t\\lib", "posix to win path: t\\lib");
39 is(Cygwin::posix_to_win_path("/", 1), $winpath, "posix to absolute win path");
41 is(Cygwin::win_to_posix_path($winpath, 1), "/", "win to absolute posix path");
46 is(Cygwin::is_binmount("/"), $binmode ? 1 : '', "check / for binmount");
48 my $rootmnt = Cygwin::mount_flags("/");
50 is(Cygwin::mount_flags("/cygdrive") =~ /,cygdrive/, 1, "check cygdrive mount_flags");
53 my @flags = split(/,/, Cygwin::mount_flags('/cygdrive'));
58 # fallback to old Cygwin, the drive need not actually exist, so
66 my @mnttbl = Cygwin::mount_table();