From 50be8bc78e1b22d51bbb35069e361ae8027e68b4 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 2 Mar 2026 12:23:01 +0900 Subject: [PATCH] Add fuzz tests for SIMD indexByteTwo to CI --- .github/workflows/linux.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 05132104..9a649179 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -44,5 +44,10 @@ jobs: - name: Unit test run: make test + - name: Fuzz test + run: | + go test ./src/algo/ -fuzz=FuzzIndexByteTwo -fuzztime=5s + go test ./src/algo/ -fuzz=FuzzLastIndexByteTwo -fuzztime=5s + - name: Integration test run: make install && ./install --all && tmux new-session -d && ruby test/runner.rb --verbose