This is an automated email from the ASF dual-hosted git repository.
psxjoy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fesod.git
The following commit(s) were added to refs/heads/main by this push:
new 3e736401 fix: update Maven command for fuzz tests to reflect new
package structure (#748)
3e736401 is described below
commit 3e736401ac8b57120f5922af4bc4aacd7cfa39a8
Author: ian zhang <[email protected]>
AuthorDate: Wed Dec 24 11:05:34 2025 +0800
fix: update Maven command for fuzz tests to reflect new package structure
(#748)
Adjusted the Maven command in the fuzz-tests.yml to use the correct
package path for the fuzz tests. This change ensures that the tests
are executed properly under the updated project structure.
- Added sure-fire option to prevent failure if no specified tests are found
---
.github/workflows/fuzz-tests.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/fuzz-tests.yml b/.github/workflows/fuzz-tests.yml
index 1ab63889..13446798 100644
--- a/.github/workflows/fuzz-tests.yml
+++ b/.github/workflows/fuzz-tests.yml
@@ -50,7 +50,7 @@ jobs:
run: |
mkdir -p "${{ runner.temp }}/jazzer-artifacts/"
# Execute only tests under fuzz package and force tests not to be
skipped
- mvn -B -pl fesod -am -D"maven.test.skip=false"
-DtrimStackTrace=false -D"test=org.apache.fesod.sheet.fuzz.*Test" test
+ mvn -B -pl fesod-sheet -am -D"maven.test.skip=false"
-DtrimStackTrace=false -D"test=org.apache.fesod.sheet.fuzz.*Test"
-D"surefire.failIfNoSpecifiedTests=false" test
- name: Upload Jazzer artifacts (crashes, repros)
if: always()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]