< prev index next >

test/runtime/NMT/CheckForProperDetailStackTrace.java

Print this page

        

@@ -38,14 +38,14 @@
 
 public class CheckForProperDetailStackTrace {
     /* The stack trace we look for by default. Note that :: has been replaced by .*
        to make sure it maches even if the symbol is not unmangled. */
     public static String stackTraceDefault =
+        ".*Hashtable.*allocate_new_entry.*\n" +
         ".*ModuleEntryTable.*new_entry.*\n" +
         ".*ModuleEntryTable.*locked_create_entry_or_null.*\n" +
-        ".*Modules.*define_module.*\n" +
-        ".*JVM_DefineModule.*\n";
+        ".*Modules.*define_module.*\n";
 
     /* The stack trace we look for on Solaris and Windows slowdebug builds. For some
        reason ALWAYSINLINE for AllocateHeap is ignored, so it appears in the stack strace. */
     public static String stackTraceAllocateHeap =
         ".*AllocateHeap.*\n" +
< prev index next >