summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-10-23 06:22:08 -0700
committerKonstantin Käfer <mail@kkaefer.com>2014-10-23 06:22:08 -0700
commitec73c369584315d91030faebc7e1a6e878c7e565 (patch)
treeaa4ffcb9a5b38b908a42cc9ca55c8c44ada251c5 /scripts
parent959d879f05da0e40270782e823435ca6946707ad (diff)
downloadqtlocation-mapboxgl-ec73c369584315d91030faebc7e1a6e878c7e565.tar.gz
fix typo
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/run_tests.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh
index fcd7fae096..6b42b79911 100755
--- a/scripts/run_tests.sh
+++ b/scripts/run_tests.sh
@@ -2,14 +2,14 @@
set -e
set -o pipefail
-c
+
cd build/${BUILDTYPE:-Release}
for TEST in ./test_* ; do
# allow writing core files
ulimit -c unlimited -S
- ulimit -c
- cat /proc/sys/kernel/core_pattern
+ echo 'ulimit -c: '`ulimit -c`
+ echo '/proc/sys/kernel/core_pattern: '`cat /proc/sys/kernel/core_pattern`
sysctl kernel.core_pattern
RESULT=0