search for: r72721

Displaying 4 results from an estimated 4 matches for "r72721".

Did you mean: 372721
2017 May 24
2
reg-tests-1d.R fails in r72721
Hi, I am failing make check in r72721 at the end of reg-tests-1d.R. The relevant block of code is ## path.expand shouldn't translate to local encoding PR#17120 filename <- "\U9b3c.R" print(Encoding(filename)) x1 <- path.expand(paste0("~/", filename)) print(Encoding(x1)) x2 <- paste0(path.expand("~...
2017 May 24
0
reg-tests-1d.R fails in r72721
...th.expand("~/"), filename))) > Error: identical(enc2utf8(path.expand(paste0("~/", filename))), paste0(path.expand("~/"), .... is not TRUE > Execution halted > > I forgot to report: > >> sessionInfo() > R Under development (unstable) (2017-05-23 r72721) > Platform: x86_64-pc-linux-gnu (64-bit) > Running under: Debian GNU/Linux 9 (stretch) > > Matrix products: default > BLAS: /usr/local/share/R-devel/lib/libRblas.so > LAPACK: /usr/local/share/R-devel/lib/libRlapack.so > > locale: > [1] LC_CTYPE=en_GB.UTF-8 LC_NUME...
2017 May 24
2
reg-tests-1d.R fails in r72721
...), + paste0(path.expand("~/"), filename))) Error: identical(enc2utf8(path.expand(paste0("~/", filename))), paste0(path.expand("~/"), .... is not TRUE Execution halted I forgot to report: > sessionInfo() R Under development (unstable) (2017-05-23 r72721) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Debian GNU/Linux 9 (stretch) Matrix products: default BLAS: /usr/local/share/R-devel/lib/libRblas.so LAPACK: /usr/local/share/R-devel/lib/libRlapack.so locale: [1] LC_CTYPE=en_GB.UTF-8 LC_NUMERIC=C [3] LC_TIME=en_GB.UTF-...
2017 May 24
1
reg-tests-1d.R fails in r72721
On 2017-05-24, Duncan Murdoch wrote: [...] > Okay, how about if we weaken the test? [...] > try > > stopifnot(path.expand(paste0("~/", filename)) == > paste0(path.expand("~/"), filename)) > Nope: > ## path.expand shouldn't translate to local encoding PR#17120 > filename <- "\U9b3c.R" > >