File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 16
16
17
17
FROM gcr.io/oss-fuzz-base/base-builder-go
18
18
RUN git clone --depth 1 https://github.com/juju/juju
19
- COPY build.sh storage_fuzzer .go $SRC/
19
+ COPY build.sh devices_fuzzer .go $SRC/
20
20
WORKDIR $SRC/juju
Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ go mod download
20
20
find /root/go/pkg/mod/github.com/aws/aws-sdk-go-v2 -name " *fuzz.go" -exec rm -rf {} \;
21
21
22
22
# Compile fuzzer:
23
- mv $SRC /storage_fuzzer .go $SRC /juju/storage /
24
- compile_go_fuzzer github.com/juju/juju/storage Fuzz storage_fuzzer
23
+ mv $SRC /devices_fuzzer .go $SRC /juju/core/devices /
24
+ compile_go_fuzzer github.com/juju/juju/core/devices Fuzz devices_fuzzer
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
//
15
15
16
- package storage
16
+ package devices
17
17
18
18
func Fuzz (data []byte ) int {
19
19
_ , err := ParseConstraints (string (data ))
You can’t perform that action at this time.
0 commit comments