42 lines
1.6 KiB
Bash
Executable File
42 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# perf-test.sh - Run comprehensive performance tests for Qwen Code
|
|
|
|
echo "Running comprehensive mathematical performance 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 performance tests completed successfully!"
|
|
echo "Results saved to .qwen/results/"
|
|
else
|
|
echo "Some mathematical performance tests failed!"
|
|
echo "Check .qwen/results/ for details"
|
|
exit 1
|
|
fi |