Skip to content

Commit

Permalink
Merge pull request #6150 from MartinNowak/fix_osx_timeouts
Browse files Browse the repository at this point in the history
instrument testing w/ time and memory information
  • Loading branch information
WalterBright committed Sep 25, 2016
2 parents a46db4f + 381dd62 commit 545ffab
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions travis.sh
Expand Up @@ -2,6 +2,13 @@

set -uexo pipefail

if [ "$TRAVIS_OS_NAME" == osx ]; then
profile="vm_stat"
else
profile="vmstat -s"
fi
date && $profile

# add missing cc link in gdc-4.9.3 download
if [ $DC = gdc ] && [ ! -f $(dirname $(which gdc))/cc ]; then
ln -s gcc $(dirname $(which gdc))/cc
Expand Down Expand Up @@ -69,7 +76,12 @@ for proj in druntime phobos; do
done

build
date && $profile
test
date && $profile
rebuild
date && $profile
rebuild
date && $profile
test_dmd
date && $profile

0 comments on commit 545ffab

Please sign in to comment.