https://github.com/wala/WALA
Raw File
Tip revision: e41ef905d4ca9c7e1671c18fb43c2322d723f831 authored by Ben Liblit on 31 March 2024, 17:56:14 UTC
Use new API for updating collection properties
Tip revision: e41ef90
run-time-trials
#!/bin/bash -eux

cd "$(dirname "$0")"

# use one parallel invocation to build everything quickly before sequential time trials
./gradlew testClasses "$@"

gio trash build/time-trials.csv || :

for trial in {1..10}; do
  # "touch orderly-shutdown" to stop after current trial completes
  if [ -f orderly-shutdown ]; then
    break
  fi
  ./gradlew test --no-build-cache --no-parallel --project-prop trial="$trial" "$@"
done
back to top