diff src/share/vm/runtime/arguments.cpp @ 4587:5b04b33dac74

add jtt tests, converted from the maxine repository using ConvertJTT
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 14 Feb 2012 16:27:59 +0100
parents e43d36482d12
children 33df1aeaebbf
line wrap: on
line diff
--- a/src/share/vm/runtime/arguments.cpp	Tue Feb 14 15:40:53 2012 +0100
+++ b/src/share/vm/runtime/arguments.cpp	Tue Feb 14 16:27:59 2012 +0100
@@ -2126,7 +2126,7 @@
     errno = 0;
     DIR* graal_dir_handle = os::opendir(graal_dir);
     while ((dentry = os::readdir(graal_dir_handle, (struct dirent *)tdbuf)) != NULL) {
-      if (strcmp(dentry->d_name, ".") != 0 && strcmp(dentry->d_name, "..") != 0 && strcmp(dentry->d_name, "com.oracle.max.graal.tests") != 0) {
+      if (strcmp(dentry->d_name, ".") != 0 && strcmp(dentry->d_name, "..") != 0 && strcmp(dentry->d_name, "com.oracle.max.graal.tests") != 0 && strcmp(dentry->d_name, "com.oracle.max.graal.jtt") != 0) {
         prepend_to_graal_classpath(scp_compiler, graal_dir, dentry->d_name);
         if (PrintVMOptions) {
           tty->print_cr("Adding project directory %s to bootclasspath", dentry->d_name);