summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMike Morris <michael.patrick.morris@gmail.com>2014-10-27 12:15:45 -0400
committerMike Morris <michael.patrick.morris@gmail.com>2014-10-27 12:15:45 -0400
commitd89c5f0e1920a455b095208d6b60a64262e83ac3 (patch)
tree25b014afbe36c3c8ca046194c59b4627053c408f /scripts
parentf01d88cdba1a4025b821741402d4681111ba2f82 (diff)
parentaf9f317c251a0a1adfeaad8dd983ab602cf93070 (diff)
downloadqtlocation-mapboxgl-d89c5f0e1920a455b095208d6b60a64262e83ac3.tar.gz
Merge branch 'master' into mesa
Conflicts: .travis.yml
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/run_tests.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh
index 6b42b79911..e107000761 100755
--- a/scripts/run_tests.sh
+++ b/scripts/run_tests.sh
@@ -10,7 +10,10 @@ for TEST in ./test_* ; do
ulimit -c unlimited -S
echo 'ulimit -c: '`ulimit -c`
echo '/proc/sys/kernel/core_pattern: '`cat /proc/sys/kernel/core_pattern`
- sysctl kernel.core_pattern
+
+ if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then
+ sysctl kernel.core_pattern
+ fi
RESULT=0
${TEST} || RESULT=$?