Skip to content
Snippets Groups Projects
Commit d2afbcf4 authored by Mick Jordan's avatar Mick Jordan
Browse files

test all recommended packages

parent 3ea1e7ec
Branches
No related tags found
No related merge requests found
......@@ -49,3 +49,13 @@ void vmmin(int n, double *x, double *Fmin,
void *ex, int *fncount, int *grcount, int *fail) {
unimplemented("vmmin");
}
void
optif9(int nr, int n, double *x, fcn_p fcn, fcn_p d1fcn, d2fcn_p d2fcn,
void *state, double *typsiz, double fscale, int method,
int iexp, int *msg, int ndigit, int itnlim, int iagflg, int iahflg,
double dlt, double gradtl, double stepmx, double steptl,
double *xpls, double *fpls, double *gpls, int *itrmcd, double *a,
double *wrk, int *itncnt) {
unimplemented("optif9");
}
......@@ -39,8 +39,9 @@ import com.oracle.truffle.r.test.TestBase;
* framework. We are primarily concerned with detecting installation regressions.
*/
public class TestRecommendedPackages extends TestRPackages {
private static final String[] OK_PACKAGES = new String[]{"MASS", "boot", "class", "cluster", "codetools", "lattice", "nnet", "spatial", "survival"};
@SuppressWarnings("unused") private static final String[] PROBLEM_PACKAGES = new String[]{"KernSmooth", "Matrix", "foreign", "nlme", "rpart"};
private static final String[] OK_PACKAGES = new String[]{"MASS", "boot", "class", "cluster", "codetools", "lattice", "nnet", "spatial", "survival", "KernSmooth", "Matrix", "foreign", "nlme",
"rpart"};
@SuppressWarnings("unused") private static final String[] PROBLEM_PACKAGES = new String[]{};
private static Path getRecommendedPath() {
return Paths.get(REnvVars.rHome(), "com.oracle.truffle.r.native", "gnur", RVersionNumber.R_HYPHEN_FULL, "src", "library", "Recommended");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment