Skip to content
Snippets Groups Projects
Commit e9f4dc44 authored by jeffliu's avatar jeffliu
Browse files

[93609] Performance: Need a way to verify that WTP plug-ins do not regress...

[93609] Performance: Need a way to verify that WTP plug-ins do not regress Eclipse platform performance
parent e2324d17
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,11 @@ public class Main ...@@ -78,7 +78,11 @@ public class Main
} }
if (buildType != null && buildId != null && date != null && time != null) if (buildType != null && buildId != null && date != null && time != null)
{ {
BufferedWriter bw = new BufferedWriter(new FileWriter("label.properties")); StringBuffer outputFile = new StringBuffer();
if (args.length > 0)
outputFile.append(args[0]);
outputFile.append("label.properties");
BufferedWriter bw = new BufferedWriter(new FileWriter(outputFile.toString()));
bw.write("buildType="); bw.write("buildType=");
bw.write(buildType); bw.write(buildType);
bw.newLine(); bw.newLine();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment