Author: brett
Date: Sat Apr 29 15:55:01 2006
New Revision: 398252
URL: http://svn.apache.org/viewcvs?rev=398252&view=rev
Log:
[SUREFIRE-37] System properties not working in forking
Submitted by: Christian Schulte
Modified:
maven/surefire/branches/surefire-testng/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkConfiguration.java
Modified:
maven/surefire/branches/surefire-testng/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkConfiguration.java
URL:
http://svn.apache.org/viewcvs/maven/surefire/branches/surefire-testng/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkConfiguration.java?rev=398252&r1=398251&r2=398252&view=diff
==============================================================================
---
maven/surefire/branches/surefire-testng/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkConfiguration.java
(original)
+++
maven/surefire/branches/surefire-testng/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkConfiguration.java
Sat Apr 29 15:55:01 2006
@@ -83,7 +83,7 @@
public void setSystemProperties( Properties systemProperties )
{
- this.systemProperties = new Properties( systemProperties );
+ this.systemProperties = (Properties) systemProperties.clone();
}
public void setJvmExecutable( String jvmExecutable )