mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 08:59:11 -06:00
7 lines
145 B
Bash
7 lines
145 B
Bash
|
#!/bin/bash -
|
||
|
CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
||
|
for testSuite in $CURRENT_DIR/tests/suites/* ; do
|
||
|
$testSuite
|
||
|
done
|