Skip to content

Commit 5669d82

Browse files
committed
BugFix to Fuzzing Actions
1 parent 7f48f11 commit 5669d82

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/a2l-fuzzing.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ jobs:
1919
go-version: 1.18
2020

2121
- name: Run A2L Fuzzing
22-
run: cd a2l
23-
run: go test -fuzz=./a2l/FuzzParseA2L -fuzztime=30s -v
22+
run: go test ./a2l -fuzz=FuzzParseA2l -fuzztime=30s -v

.github/workflows/ihex32-fuzzing.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ jobs:
1919
go-version: 1.18
2020

2121
- name: Run A2L Fuzzing
22-
run: cd ihex32
23-
run: go test -fuzz=./ihex32/FuzzParseHex -fuzztime=30s -v
22+
run: go test ./ihex32 -fuzz=FuzzParseHex -fuzztime=30s -v

.github/workflows/srec19-fuzzing.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ jobs:
1919
go-version: 1.18
2020

2121
- name: Run A2L Fuzzing
22-
run: cd srec19
23-
run: go test -fuzz=./srec19/FuzzParseHex -fuzztime=30s -v
22+
run: go test ./srec19 -fuzz=FuzzParseHex -fuzztime=30s -v

0 commit comments

Comments
 (0)