gbserver/gb-testing/run_tests.sh

27 lines
548 B
Bash
Raw Normal View History

2024-12-22 20:56:52 -03:00
#!/bin/bash
set -e
echo "Running gb-testing test suite..."
# Run integration tests
echo "Running integration tests..."
cargo test --test '*' --features integration
# Run load tests
echo "Running load tests..."
cargo test --test '*' --features load
# Run performance benchmarks
#echo "Running performance benchmarks..."
#cargo bench
2024-12-22 20:56:52 -03:00
# Run stress tests
#echo "Running stress tests..."
#cargo test --test '*' --features stress
2024-12-22 20:56:52 -03:00
# Run chaos tests
#echo "Running chaos tests..."
#cargo test --test '*' --features chaos
2024-12-22 20:56:52 -03:00
echo "All tests completed!"