test.sh 195 B

123456789101112
  1. #!/bin/bash
  2. set -e
  3. # Change to the source directory
  4. cd sources/xz
  5. echo "Running tests for xz..."
  6. # Run the test suite using all available threads
  7. make check -j$(nproc)
  8. echo "Tests completed."