Skip to content

Commit

Permalink
Allow multiple jars to be used for fuzz target classpath
Browse files Browse the repository at this point in the history
Previously the first argument had to be a single jar with all the application classes,
now we allow to specify multiple jars that are separted with pathSeparator.
  • Loading branch information
vlsi committed Jan 18, 2020
1 parent feb3622 commit 67eb7b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void run() {

try {
ClassLoader loader = new InstrumentingClassLoader(
new String[]{System.getProperty("java.class.path"), this.testPackageName},
this.testPackageName.split(File.pathSeparator),
ZestCLI.class.getClassLoader());

// Load the guidance
Expand Down

0 comments on commit 67eb7b5

Please sign in to comment.