diff options
author | Sven Gothel <[email protected]> | 2022-06-03 08:25:33 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-06-03 08:25:33 +0200 |
commit | 36497683bfecbc209ecf48be942239d3c7983397 (patch) | |
tree | 8759f2a24a124c177f2593c8da34b9830c3fb322 /scripts | |
parent | 277bde76c0dc1e233ea14643b25dbcc85bbb76cb (diff) |
scripts/run-*.sh: Remove sudo requirement, use core_pattern as-is
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/run-java-test.sh | 2 | ||||
-rwxr-xr-x | scripts/run-native-test.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/run-java-test.sh b/scripts/run-java-test.sh index 9ed218a..75b416c 100755 --- a/scripts/run-java-test.sh +++ b/scripts/run-java-test.sh @@ -56,7 +56,7 @@ rm -f $valgrindlogfile callgrindoutfile=$logbasename-callgrind.out rm -f $callgrindoutfile -echo 'core_%e.%p' | sudo tee /proc/sys/kernel/core_pattern +#echo 'core_%e.%p' | sudo tee /proc/sys/kernel/core_pattern ulimit -c unlimited # run as root 'dpkg-reconfigure locales' enable 'en_US.UTF-8' diff --git a/scripts/run-native-test.sh b/scripts/run-native-test.sh index 8da280c..7958646 100755 --- a/scripts/run-native-test.sh +++ b/scripts/run-native-test.sh @@ -38,7 +38,7 @@ rm -f $valgrindlogfile callgrindoutfile=$logbasename-callgrind.out rm -f $callgrindoutfile -echo 'core_%e.%p' | sudo tee /proc/sys/kernel/core_pattern +#echo 'core_%e.%p' | sudo tee /proc/sys/kernel/core_pattern ulimit -c unlimited # run as root 'dpkg-reconfigure locales' enable 'en_US.UTF-8' |