We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# perl -E 'say "$^O: $^V"' android: v5.19.9 # perl -E 'use Cwd; say Cwd::cwd()' /mnt/sdcard/src/.cpan/build/Path-Class-0.33-7dmUq1 # perl -E 'BEGIN{ $^O = "Unix" }use Cwd; say Cwd::cwd()' #
That causes this test https://github.com/kenahoo/Path-Class/blob/master/t/01-basic.t#L84 to fail. Perhaps overriding $^O after loading Cwd would work -- that would at least get _backtrick_cwd working on some platforms. Otherwise, just skipping the test on Android would work fine.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
That causes this test https://github.com/kenahoo/Path-Class/blob/master/t/01-basic.t#L84 to fail. Perhaps overriding $^O after loading Cwd would work -- that would at least get _backtrick_cwd working on some platforms. Otherwise, just skipping the test on Android would work fine.
The text was updated successfully, but these errors were encountered: