Completed clean root directory structure: - Root now contains only: .git, .env, docs/, orig/ - Moved all remaining files and directories to orig/: - Config files (.claude, .dockerignore, .drone.yml, etc.) - All .env variants (except active .env) - Git config (.gitconfig, .github, .gitignore, etc.) - Tool configs (.golangci.yml, .revive.toml, etc.) - Documentation (*.md files, @prompts) - Build files (Dockerfiles, Makefile, go.mod, go.sum) - Docker compose files - All source directories (scripts, tests, tools, etc.) - Runtime directories (logs, monitoring, reports) - Dependency files (node_modules, lib, cache) - Special files (--delete) - Removed empty runtime directories (bin/, data/) V2 structure is now clean: - docs/planning/ - V2 planning documents - orig/ - Complete V1 codebase preserved - .env - Active environment config (not in git) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
42 lines
1.6 KiB
Bash
Executable File
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 |