Files
mev-beta/.qwen/scripts/math-test.sh
2025-09-14 10:09:55 -05:00

42 lines
1.6 KiB
Bash
Executable File

#!/bin/bash
# math-test.sh - Run comprehensive mathematical tests for Qwen Code
echo "Running comprehensive mathematical tests for Qwen Code..."
# Create results directory if it doesn't exist
mkdir -p .qwen/results
# Run unit tests for mathematical functions
echo "Running unit tests for mathematical functions..."
go test -v ./pkg/uniswap/... ./pkg/math/... | tee .qwen/results/math-unit-tests.log
# Run property-based tests
echo "Running property-based tests..."
go test -v -run=Property ./pkg/uniswap/... ./pkg/math/... | tee .qwen/results/math-property-tests.log
# Run fuzz tests (limited time)
echo "Running fuzz tests (60 seconds)..."
timeout 60s go test -fuzz=Fuzz ./pkg/uniswap/... ./pkg/math/... | tee .qwen/results/math-fuzz-tests.log
# Run benchmarks
echo "Running mathematical function benchmarks..."
go test -bench=. -benchmem ./pkg/uniswap/... ./pkg/math/... | tee .qwen/results/math-benchmarks.log
# Run benchmarks with CPU profiling
echo "Running benchmarks with CPU profiling..."
go test -bench=. -cpuprofile=.qwen/results/cpu.prof ./pkg/uniswap/... ./pkg/math/... | tee .qwen/results/math-cpu-bench.log
# Run benchmarks with memory profiling
echo "Running benchmarks with memory profiling..."
go test -bench=. -memprofile=.qwen/results/mem.prof ./pkg/uniswap/... ./pkg/math/... | tee .qwen/results/math-mem-bench.log
# Check for errors
if [ $? -eq 0 ]; then
echo "All mathematical tests completed successfully!"
echo "Results saved to .qwen/results/"
else
echo "Some mathematical tests failed!"
echo "Check .qwen/results/ for details"
exit 1
fi