Finish deprecation. Everything uses the new config abstraction layer of the bt(6) core.
21 lines
407 B
Bash
21 lines
407 B
Bash
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
set -e
|
|
|
|
cd $DIR
|
|
|
|
echo "Running tests..."
|
|
|
|
wine ./security-id-test.exe
|
|
wine ./security-mcode-test.exe
|
|
wine ./security-util-test.exe
|
|
wine ./security-rp-test.exe
|
|
wine ./security-rp2-test.exe
|
|
wine ./security-rp3-test.exe
|
|
wine ./util-net-test.exe
|
|
|
|
wine ./inject.exe d3d9hook.dll d3d9hook-test.exe
|
|
|
|
echo "All tests successful." |