Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] Limits in RunSafely.sh"
2004 Jun 26
1
[LLVMdev] Non-portable use time command in RunSafely.sh
If you look at http://npt.cc.rsu.ru/testresults-X86-FreeBSD/index.html
then you see that all program test have '*' in run time columns.
I think problem in using plain 'time' command in RunSafely.sh
At FreeBSD 'time <program> <args>' call generate output in format "
0,00 real 0,00 user 0,00 sys"
for *.time files instead expected
2014 Aug 15
2
[LLVMdev] test-suite RunSafely.sh remote execution with test copy
Hello everyone,
I am working to run the LLVM Nightly Testsuite on embedded arm devices. Not
all of these devices can mount NFS to share a common directory tree. To
mitigate this I have patched test-suite/RunSafely.sh (attached) to create a
temporary directory, run the test remotely, collect the output, and cleanup
after itself. The patch breaks compatibility with the current remote device
model
2010 Apr 19
0
[LLVMdev] FYI: Changing RunSafely.sh to only track user time
Daniel Dunbar wrote:
> I am going to change the LLVM test-suite RunSafely.sh to only track
> 'user' time, instead of reporting 'user' + 'sys' time as it currently
> does. This will probably cause a spike in nightly test numbers,
> although hopefully it will be limited to the smaller tests.
>
> The eventual goal is to report all numbers (independently), so
2010 Apr 18
3
[LLVMdev] FYI: Changing RunSafely.sh to only track user time
I am going to change the LLVM test-suite RunSafely.sh to only track
'user' time, instead of reporting 'user' + 'sys' time as it currently
does. This will probably cause a spike in nightly test numbers,
although hopefully it will be limited to the smaller tests.
The eventual goal is to report all numbers (independently), so that we
can control for noise better. However,
2010 Apr 19
1
[LLVMdev] FYI: Changing RunSafely.sh to only track user time
On Apr 18, 2010, at 11:08 PM, John Criswell wrote:
> Second, why are you only interested in user time? The reason why we had
> RunSafely.sh measure user + system time is that it gives a more accurate
> depiction of how well an optimization works. If a program spends most
> of its time in the OS, increasing speed in user-space doesn't gain us
> much. If a transform
2007 May 18
1
[LLVMdev] 2.0-prerelease build errors
On Thu, May 17, 2007 at 03:15:09PM -0700, Tanya M. Lattner wrote:
> > Should configure also error out if perl isn't installed?
>
> Yes. Reid has changed this so that perl is now required.
>
> Thanks so much for reporting these!
You're welcome!
I'm still working on the "method four" testing that you requested.
The "make check" is done, results
2011 Nov 09
3
[LLVMdev] [cfe-dev] LLVM 3.0rc3 Testing Beginning
Eric Christopher <echristo at apple.com> writes:
> On Nov 8, 2011, at 7:20 PM, David A. Greene wrote:
>
> I couldn't figure out how to run the test-suite. Are there up-to-date
> instructions somewhere? llvm-gcc doesn't exist anymore...
>
> Easiest is to check out the test-suite branch into projects and then after you configure and build from the top
2004 Sep 11
0
[LLVMdev] POST MORTEM: llvm-test changes
On Sat, 11 Sep 2004 13:53:11 -0700
Reid Spencer <reid at x10sys.com> wrote:
> On Sat, 2004-09-11 at 12:49, Jeff Cohen wrote:
> >
> > ===================== MultiSource/Applications/sgefa
> >
> sgefa is a known XFAIL. See the nightly test results over the last
> several months. Actually, you should compare your test results with the
> 1.3 release test results
2006 Apr 26
1
[LLVMdev] LLC fail without gccld optimization on spec2000 int benchmarks
Hi,
In my experiments, I need to disable several linking optimizations. However,
bzip2, vortex and eon failed if "-disable-opt" was passed to gccld. I tried
the out-of-box llvm and the building process provided by llvm-test. The same
problem was observed, when I specified EXTRA_LINKTIME_OPT_FLAGS =
-disable-opt on Makefile.program and simplied typed "make" under
2011 Nov 07
0
[LLVMdev] test-suite failures
On Mon, Nov 7, 2011 at 2:11 PM, reed kotler <rkotler at mips.com> wrote:
> We have a modified version of projects/test-suite that we can run cross
> using Qemu.
>
> We would like to put that back so that other people can test MIPS
> before putting back.
> Well, this would be easily modifiable for ARM and other targets that are
> supported by QEMU.
>
> But in this
2011 Nov 08
1
[LLVMdev] test-suite failures
On 11/07/2011 02:29 PM, Eli Friedman wrote:
> On Mon, Nov 7, 2011 at 2:11 PM, reed kotler<rkotler at mips.com> wrote:
>> We have a modified version of projects/test-suite that we can run cross
>> using Qemu.
>>
>> We would like to put that back so that other people can test MIPS
>> before putting back.
>> Well, this would be easily modifiable for ARM
2012 Apr 14
1
[LLVMdev] Running test suite with LNT failed
> > But I got the error message below,
> >
> > ---
> > 2012-04-12 02:39:48: executing test modules
> > 2012-04-12 02:39:49: loading nightly test data...
> > nt.py:737: fatal error: nightly test failed, no report generated
> > ---
> >
> > Any idea on how I can figure out what the fatal error is? Thanks!
>
> Inside the sandbox there will
2012 Apr 28
0
[LLVMdev] Test-suite && sh: time: command not found
In running the test-suite (llvm 3.0), in the *.out.time files in the
Output folder the following line appears:
sh: time: command not found
This occurs when the following lines are executed:
#RunSafely.sh
( sh -c "$ULIMITCMD $TIMEIT -p sh -c '$COMMAND >$OUTFILE 2>&1 < $INFILE;
echo exit \$?'" ) 2>&1 \
| awk -- '\
BEGIN { cpu = 0.0; }
/^user/
2006 May 12
2
Can one set limits on new core dump?
Hi all,
Is there anyway to limit the new core dumping panics?
Can't find anything on it. (If I'd only looked in that ...)
Was my mistake, but winbindd filled up an entire volume
and froze out every process writing to that drive.
I started it from a shell and my soft limit is
already zero. (ulimit -S -c 0)
FC4 2.6.16-1.2069 smp, gcc 4.0.2-8
samba 3.0.23pre2-SVN-build-15162
Regards, Doug
2004 Sep 13
2
CentOS 3.1: sshd and pam /etc/security/limits.conf file descriptor settings problem
Why can't non-uid 0 users have more than 1024 file descriptors when
logging in via ssh?
I'm trying to allow a user to have a hard limit of 8192 file
descriptors(system defaults to 1024) via the following setting in
/etc/security/limits.conf:
jdoe hard nofile 8192
But when jdoe logs in via ssh and does 'ulimit -Hn' he gets '1024' as a
response. If he tries to
2013 Jan 31
3
Userdb passwd and 'nologin' users
I am running Dovecot with system users (userdb passwd), but some of
those users don't have shell accounts on the IMAP server so their shell
on that machine is set to /usr/sbin/nologin. Currently I am using
maildirs and this is not a problem, but I am in the process of switching
to dbox which means I will need a cronjob running 'doveadm purge -A'.
During testing I found that those
2009 May 14
4
Possibly dumb questions about DC and user/system limits
Because of user access growth, the number of processes associated with
IMAP has increased and I thought to change some of the configured
parms. dovecot -n yields:
# 1.1.14: /usr/local/etc/dovecot.conf
# OS: AIX 1 005A928C4C00
listen: *:143
ssl_listen: *:993
disable_plaintext_auth: no
verbose_ssl: yes
login_dir: /var/run/dovecot/login
login_executable: /usr/local/libexec/dovecot/imap-login
1997 Feb 22
2
ssh and limits on resources
While logging in via ssh (versions 1.2.17 and 1.2.12) under Linux 2.0, I
found that limits weren''t being set (as shown by the output of "limit"
(tcsh) or "ulimit -a" (bash). Since /etc/profile, /etc/csh.cshrc, and
/etc/limits were ignored, I made /etc/sshrc and put "ulimit" statements in
it. However, I was unable to limit the number of processes this way,
2009 Jul 08
0
[LLVMdev] [PATCH] Fix for bugpoint -remote-client
On Jul 8, 2009, at 12:42 AM, Viktor Kutuzov wrote:
> Hello Evan,
>
> Thanks for looking at the patch.
>
>> This should use std::cerr and make sure it is wrapped inside the
>> DEBUG
>> macro.
>
> Will do.
>
>> Also, we don't want RemoteRunSafely.sh to be under utils/bugpoint.
>> Can you move it to test-suite? Are you planning to change the
2009 Jul 08
3
[LLVMdev] [PATCH] Fix for bugpoint -remote-client
> bugpoint should be a standalone tool. It should not require a separate
> script to handle remote execution. Why is the script needed?
Bugpoint is a standalone too and does not require any separate script.
The script is a helper for using ssh as a remote client.
Bugpoint should not be aware of any details how the test program will be delivered to a remote target, get executed there, and