[llvm-commits] [test-suite] r50438 - /test-suite/trunk/RunSafely.sh
John Criswell
criswell at uiuc.edu
Tue Apr 29 13:45:33 PDT 2008
Author: criswell
Date: Tue Apr 29 15:45:32 2008
New Revision: 50438
URL: http://llvm.org/viewvc/llvm-project?rev=50438&view=rev
Log:
Wrap text to 80 columns.
No functionality changes.
Modified:
test-suite/trunk/RunSafely.sh
Modified: test-suite/trunk/RunSafely.sh
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/RunSafely.sh?rev=50438&r1=50437&r2=50438&view=diff
==============================================================================
--- test-suite/trunk/RunSafely.sh (original)
+++ test-suite/trunk/RunSafely.sh Tue Apr 29 15:45:32 2008
@@ -67,19 +67,19 @@
CYGWIN*)
;;
Darwin*)
- # Disable core file emission, the script doesn't find it anyway because it is put
- # into /cores.
+ # Disable core file emission, the script doesn't find it anyway because it
+ # is put into /cores.
ULIMITCMD="$ULIMITCMD ulimit -c 0;"
ULIMITCMD="$ULIMITCMD 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. ;)
+ # 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. ;)
ULIMITCMD="$ULIMITCMD ulimit -f 10485760;"
;;
*)
ULIMITCMD="$ULIMITCMD ulimit -t $ULIMIT;"
ULIMITCMD="$ULIMITCMD ulimit -c unlimited;"
- # 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. ;)
+ # 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. ;)
ULIMITCMD="$ULIMITCMD ulimit -f 10485760;"
# virtual memory: 200 MB should be enough for anybody. ;)
More information about the llvm-commits
mailing list