blob: 99f49bda54d83e53e1fae24231a277e420d4ee28 (
plain)
1
2
3
4
5
6
7
8
9
|
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
$1/Tests/DiligentToolsTest/DiligentToolsTest || return
fi
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
if [ "$IOS" = "false" ]; then
$1/Tests/DiligentToolsTest/$CONFIG/DiligentToolsTest || return
fi
fi
|