Changeset 6132

Show
Ignore:
Timestamp:
11/27/06 15:19:19
Author:
jan
Message:

mac os debug mode no longer needed - works now

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/TODO

    r6042 r6132  
    33=== To Do 
    44* JUnit integration 
     5* running java with fork==false not supported on Mac OS X! 
    56 
    67 
  • trunk/lib/jerbil/java_helper.rb

    r6131 r6132  
    1111 
    1212module Jerbil 
    13   # for some really weird reasons schemaexport fails on mac os x 
    14   # if java is not running in debug mode 
    15   JAVA_DEBUG = ::RUBY_PLATFORM =~ /darwin/i || false 
    1613  IS_WINDOWS = RUBY_PLATFORM =~ /mswin|mingw/i 
    1714  JAVA_PATH_SEPERATOR = IS_WINDOWS ? ';' : ':' 
     
    106103      jvmargs << "-Djava.util.logging.config.file=#{options[:loggingprops].to_s}" if options[:loggingprops]  
    107104        
    108       if JAVA_DEBUG || ENV['JAVA_DEBUG'] 
     105      if ENV['JAVA_DEBUG'] 
    109106        suspend = ENV['JAVA_DEBUG'].to_s.index('suspend') ? 'y' : 'n' 
    110107        jvmargs += [