Browse Source
* Add separate scripts because the all tests script requires human intervention * Fix Tracy to now point to the new locations of Tracy.h and TracyClient.cppmaster
6 changed files with 43 additions and 5 deletions
@ -0,0 +1,19 @@ |
|||
#!/bin/sh |
|||
|
|||
CAKELISP_DIR=Dependencies/cakelisp |
|||
|
|||
# Link Cakelisp if necessary |
|||
[ ! -d "$CAKELISP_DIR" ] && git clone git@github.com:makuto/cakelisp.git Dependencies/cakelisp |
|||
|
|||
# Build Cakelisp itself |
|||
echo "\n\nCakelisp\n\n" |
|||
cd $CAKELISP_DIR |
|||
./Build.sh || exit $? |
|||
|
|||
cd ../.. |
|||
|
|||
CAKELISP=./Dependencies/cakelisp/bin/cakelisp |
|||
|
|||
echo "Building and running all tests" |
|||
|
|||
$CAKELISP src/Config_Linux.cake src/TestConfig_AllTests.cake src/GameLibTests.cake --verbose-processes || exit $? |
@ -0,0 +1 @@ |
|||
(comptime-define-symbol 'Test-All) |
@ -0,0 +1 @@ |
|||
(comptime-define-symbol 'Test-Minimal) |
Loading…
Reference in new issue