Hey,

I've noticed that modifying the list returned by Test#getJvmArgs() has no 
effect:

test.configure {
   jvmArgs << "-Xdebug"
   jvmArgs << "-Xrunjdwp:transport=dt_socket,address=11111,server=y,suspend=y"
}

Instead I have to do:

test.configure {
   def args = []
   args << "-Xdebug"
   args << "-Xrunjdwp:transport=dt_socket,address=11111,server=y,suspend=y"
   jvmArgs(args)
}

Is this as intended?

Thanks

Steven



      

Reply via email to