Skip to content

Commit 8e652ea

Browse files
committed
Test installing a package that requires C++11
1 parent 96e9a76 commit 8e652ea

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test.R

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ library(R6, lib.loc = temp_lib)
1212
install.packages("BASIX", lib = temp_lib)
1313
library(BASIX, lib.loc = temp_lib)
1414

15+
# Install a package that compiles with C++11 (old enough to be supported on CentOS 6)
16+
install.packages("digest", lib = temp_lib)
17+
library(digest, lib.loc = temp_lib)
18+
1519
# Check iconv support
1620
if (!capabilities("iconv") || !all(c("ASCII", "LATIN1", "UTF-8") %in% iconvlist())) {
1721
stop("missing iconv support")

0 commit comments

Comments
 (0)