[llvm-commits] Re: llvm-commits Digest, Vol 14, Issue 4

Andrew Lenharth alenhar2 at cs.uiuc.edu
Tue Aug 2 18:02:42 PDT 2005


> Diffs of the changes:  (+9 -0)
> 
>  RunSafely.sh |    9 +++++++++
>  1 files changed, 9 insertions(+)
> 
> 
> Index: llvm-test/RunSafely.sh
> diff -u llvm-test/RunSafely.sh:1.18 llvm-test/RunSafely.sh:1.19
> --- llvm-test/RunSafely.sh:1.18	Thu Jul 28 12:02:07 2005
> +++ llvm-test/RunSafely.sh	Tue Aug  2 17:04:00 2005
> @@ -23,6 +23,15 @@
>  case $SYSTEM in
>    CYGWIN*) 
>      ;;
> +  Darwin*)
> +    # Disable core file emission, the script doesn't find it anyway because it is put 
> +    # into /cores.
> +    ulimit -c 0
> +    ulimit -t $ULIMIT
> +    # To prevent infinite loops which fill up the disk, specify a limit on size of
> +    # files being output by the tests. 10 MB should be enough for anybody. ;)

Except for cores from lli.  10 MB < 18 MB (16 code 1 Global 1 constant)

> +    ulimit -f 10485760
> +    ;;
>    *)
>      ulimit -t $ULIMIT
>      ulimit -c unlimited

-- 
Andrew Lenharth <alenhar2 at cs.uiuc.edu>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20050802/32bdb1ca/attachment.sig>


More information about the llvm-commits mailing list