Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added program/fuzz/program-mb-3-17-2025.so
Binary file not shown.
7 changes: 1 addition & 6 deletions scripts/ci/conformance.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down