You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
16 lines
355 B
2 years ago
|
#!/bin/bash
|
||
|
# Script to check the logs of our simulation to see if the simulation had
|
||
|
# errors, warnings, or passed.
|
||
|
|
||
|
TOOLS_DIR="$(cd "$(dirname "$0")" ; pwd -P )"
|
||
|
BUILD_DIR="$TOOLS_DIR/../build/release"
|
||
|
|
||
|
SIMS=$(find -L $1 -name "sim.json" -type f | grep Box2D | grep -v -e "cor=-1")
|
||
|
|
||
|
echo "found sims"
|
||
|
|
||
|
for f in $SIMS
|
||
|
do
|
||
|
$BUILD_DIR/cli_ccd "$f"
|
||
|
done
|