You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/testthat/test-install.R
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -127,11 +127,11 @@ test_that("toolchain checks on Unix work", {
127
127
path_backup<- Sys.getenv("PATH")
128
128
Sys.setenv("PATH"="")
129
129
if (os_is_macos()) {
130
-
err_msg_cpp<-"A suitable C++ compiler was not found. Please install the command line tools for Mac with 'xcode-select --install' or install Xcode from the app store. Then restart R and run check_cmdstan_toolchain()."
131
-
err_msg_make<-"The 'make' tool was not found. Please install the command line tools for Mac with 'xcode-select --install' or install Xcode from the app store. Then restart R and run check_cmdstan_toolchain()."
130
+
err_msg_cpp<-"A suitable C++ compiler was not found. Please install the command line tools for Mac with 'xcode-select --install' or install Xcode from the app store. Then restart R and run cmdstanr::check_cmdstan_toolchain()."
131
+
err_msg_make<-"The 'make' tool was not found. Please install the command line tools for Mac with 'xcode-select --install' or install Xcode from the app store. Then restart R and run cmdstanr::check_cmdstan_toolchain()."
132
132
} else {
133
-
err_msg_cpp<-"A C++ compiler was not found. Please install the 'clang++' or 'g++' compiler, restart R, and run check_cmdstan_toolchain()."
134
-
err_msg_make<-"The 'make' tool was not found. Please install 'make', restart R, and then run check_cmdstan_toolchain()."
133
+
err_msg_cpp<-"A C++ compiler was not found. Please install the 'clang++' or 'g++' compiler, restart R, and run cmdstanr::check_cmdstan_toolchain()."
134
+
err_msg_make<-"The 'make' tool was not found. Please install 'make', restart R, and then run cmdstanr::check_cmdstan_toolchain()."
0 commit comments