diff --git a/program/fuzz/program-mb-3-17-2025.so b/program/fuzz/program-mb-3-17-2025.so new file mode 100644 index 0000000..c29f56b Binary files /dev/null and b/program/fuzz/program-mb-3-17-2025.so differ diff --git a/scripts/ci/conformance.mjs b/scripts/ci/conformance.mjs index 8ccd95d..d632540 100644 --- a/scripts/ci/conformance.mjs +++ b/scripts/ci/conformance.mjs @@ -8,14 +8,9 @@ import { getProgramId, getProgramSharedObjectPath, workingDirectory } from '../u const programId = getProgramId('program'); const programBinaryPath = getProgramSharedObjectPath('program'); -const baseBinaryDirPath = path.join(workingDirectory, 'target', 'dump-solana'); -const baseBinaryPath = path.join(baseBinaryDirPath, 'base.so'); +const baseBinaryPath = path.join(workingDirectory, 'program', 'fuzz', 'program-mb-3-17-2025.so'); const molluskFixturesPath = path.join(workingDirectory, 'program', 'fuzz', 'blob'); -// Clone the program from mainnet-beta. -await $`mkdir -p ${baseBinaryDirPath}`; -await $`solana program dump -um ${programId} ${baseBinaryPath}`; - // Test this program against the cloned program for conformance with Mollusk. let output = await $`mollusk run-test \ --proto firedancer \