File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ BUILD_CLASSPATH=$(echo $ALL_JARS | xargs printf -- "$OUT/%s:"):$JAZZER_API_PATH
31
31
# All .jar and .class files lie in the same directory as the fuzzer at runtime.
32
32
RUNTIME_CLASSPATH=$( echo $ALL_JARS | xargs printf -- " \$ this_dir/%s:" ) :\$ this_dir
33
33
34
- for fuzzer in $( find $SRC -name ' *Fuzzer.java' ) ; do
34
+ for fuzzer in $( find $SRC -maxdepth 1 - name ' *Fuzzer.java' ) ; do
35
35
fuzzer_basename=$( basename -s .java $fuzzer )
36
36
javac -cp $BUILD_CLASSPATH $fuzzer
37
37
cp $SRC /$fuzzer_basename .class $OUT /
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ BUILD_CLASSPATH=$(echo $ALL_JARS | xargs printf -- "$OUT/%s:"):$JAZZER_API_PATH
32
32
# All .jar and .class files lie in the same directory as the fuzzer at runtime.
33
33
RUNTIME_CLASSPATH=$( echo $ALL_JARS | xargs printf -- " \$ this_dir/%s:" ) :\$ this_dir
34
34
35
- for fuzzer in $( find $SRC -name ' *Fuzzer.java' ) ; do
35
+ for fuzzer in $( find $SRC -maxdepth 1 - name ' *Fuzzer.java' ) ; do
36
36
fuzzer_basename=$( basename -s .java $fuzzer )
37
37
javac -cp $BUILD_CLASSPATH $fuzzer
38
38
cp $SRC /$fuzzer_basename .class $OUT /
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ BUILD_CLASSPATH=$(echo $ALL_JARS | xargs printf -- "$OUT/%s:"):$JAZZER_API_PATH
32
32
# All .jar and .class files lie in the same directory as the fuzzer at runtime.
33
33
RUNTIME_CLASSPATH=$( echo $ALL_JARS | xargs printf -- " \$ this_dir/%s:" ) :\$ this_dir
34
34
35
- for fuzzer in $( find $SRC -name ' *Fuzzer.java' ) ; do
35
+ for fuzzer in $( find $SRC -maxdepth 1 - name ' *Fuzzer.java' ) ; do
36
36
fuzzer_basename=$( basename -s .java $fuzzer )
37
37
javac -cp $BUILD_CLASSPATH $fuzzer
38
38
cp $SRC /$fuzzer_basename .class $OUT /
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ BUILD_CLASSPATH=$(echo $ALL_JARS | xargs printf -- "$OUT/%s:"):$JAZZER_API_PATH
34
34
# All .jar and .class files lie in the same directory as the fuzzer at runtime.
35
35
RUNTIME_CLASSPATH=$( echo $ALL_JARS | xargs printf -- " \$ this_dir/%s:" ) :\$ this_dir
36
36
37
- for fuzzer in $( find $SRC -name ' *Fuzzer.java' ) ; do
37
+ for fuzzer in $( find $SRC -maxdepth 1 - name ' *Fuzzer.java' ) ; do
38
38
fuzzer_basename=$( basename -s .java $fuzzer )
39
39
javac -cp $BUILD_CLASSPATH $fuzzer
40
40
cp $SRC /$fuzzer_basename .class $OUT /
You can’t perform that action at this time.
0 commit comments