summaryrefslogtreecommitdiff
path: root/t/io/fs.t
diff options
context:
space:
mode:
Diffstat (limited to 't/io/fs.t')
-rw-r--r--t/io/fs.t5
1 files changed, 3 insertions, 2 deletions
diff --git a/t/io/fs.t b/t/io/fs.t
index 5303a577aa..78d22e2959 100644
--- a/t/io/fs.t
+++ b/t/io/fs.t
@@ -19,8 +19,9 @@ elsif ($^O eq 'VMS') {
elsif ($ENV{PWD}) {
$wd = $ENV{PWD};
}
-elsif ( $^O =~ /android/ ) {
- # On Android, pwd is a shell builtin, so plain `pwd` won't cut it
+elsif ( $^O =~ /android/ || $^O eq 'nto' ) {
+ # On Android and Blackberry 10, pwd is a shell builtin, so plain `pwd`
+ # won't cut it
$wd = `sh -c pwd`;
}
else {