Displaying 18 results from an estimated 18 matches for "runtestflags".
2009 Sep 19
0
[LLVMdev] OT: intel darwin losing primary target status
...k
>
Nick,
I can confirm that passing "-Wl,-no_compact_unwind" to the failing
testcase for g++.dg/torture/stackalign/eh-vararg-2.C eliminates the
run-time error. I'd run the entire testsuite with that approach but
I don't know how to suppress the comma in...
make -k check RUNTESTFLAGS="--target_board=unix'{-Wl,-no_compact_unwind}'"
so that it runs as a single test passing "-Wl,-no_compact_unwind".
Jack
2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
...flush $chan
+ }
+ return
+ }
+
set path [file join $objdir $subdir]
#Make Output Directory if it does not exist already
Index: Makefile
===================================================================
--- Makefile (revision 65423)
+++ Makefile (working copy)
@@ -26,6 +26,9 @@
RUNTESTFLAGS := $(VERBOSE)
endif
+SITE_EXP := site.exp
+FORCETGT := FORCE
+
ifdef TESTSUITE
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
@@ -49,22 +52,23 @@
endif
ifneq ($(RUNTEST),)
-check-local:: site.exp
+check-local:: $(SITE_EXP)...
2009 Sep 18
5
[LLVMdev] OT: intel darwin losing primary target status
I thought of another work around. The FSF gcc driver can implicitly
add -no_compact_unwind to the link line. This tells the linker to not
produce compact unwind information from the dwarf unwind info in .o
files. Then at runtime the darwin unwinder will fallback and use the
slow dwarf unwind info.
-Nick
On Sep 18, 2009, at 2:27 PM, Nick Kledzik wrote:
> I dug into this. Based on
2008 Feb 29
0
[LLVMdev] llvm/test: suffix or operands invalid for `push'
...ck:
>> set gccpath "gcc"
>> set gxxpath "g++"
>>
>> Should I edit site.exp to fix that, or is there a better way?
>
I'm coming into this late so I'm not really sure what's going on, but
you
can pass options to dejagnu pretty easily using RUNTESTFLAGS. That
aside though, what are you doing, and what are you trying to
accomplish? :)
-eric
2008 Feb 29
3
[LLVMdev] llvm/test: suffix or operands invalid for `push'
I do not know the configury stuff well enough to answer this, can
someone else help?
On Feb 28, 2008, at 1:55 AM, Joachim Durchholz wrote:
> Am Mittwoch, den 27.02.2008, 14:31 -0800 schrieb Dale Johannesen:
>> On Feb 27, 2008, at 2:12 PM, Joachim Durchholz wrote:
>>> All error messages refer to one of the following four
>>> instructions:
>>> pushl %ebp
2009 Aug 03
1
[LLVMdev] 'make check' broken?
I'm now getting this trying to 'make check' on llvm:
./bin/runtest 1 --ignore "llvm2cpp.exp ocaml.exp" )
WARNING: Couldn't find the global config file.
Illegal Argument "1"
try "runtest --help" for option list
Anyone else seeing this? I just did a full clean and rebuild and still get
the problem.
-Dave
2008 Feb 22
0
[LLVMdev] Alignment on byval parameters
...ENT in
config/i386/llvm-i386-target.h; at the extreme, if you set that to 0
things should go back to the way they were.
The best test I know for calling convention compatibility is the
struct-layout-1 part of the gcc testsuite. It is run like this from
the gcc build directory:
make -k check RUNTESTFLAGS=struct-layout-1.exp
Takes 15 minutes or so. I currently have the following failures
remaining on Darwin:
C: t025, t028
C++: t024, t026, t027
All of these are due to using MMX instructions without EMMS in the
right places (Chris checked in some stuff that was supposed to fix
this, but it do...
2006 Dec 22
5
[LLVMdev] in Cygwin problems
...ot;LDFLAGS=" "LIBCFLAGS=-O2" "LIBCFLAGS_FOR_TARGET=-O2 -O
2" "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/sh" "EXP
ECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/tmp/llvm/install" "infodir=/tmp/llvm/install/info"
"libdir=/tmp/llvm/install/lib" "prefix=/tmp/llvm/install" "tooldir=/tmp/llvm/install/i686-pc-cygwin" "AR=ar"
"AS=as" "CC=gcc" "CXX=c++"...
2008 Feb 29
2
[LLVMdev] llvm/test: suffix or operands invalid for `push'
...-linux-gnu
which means it knows that it is running on amd64 (host = x86_64) and
deals with compilers emitting code for 32 bit (target = i686).
I suspect it should pass on the target=i686 option to `as' and `ld', but
doesn't.
> but you can pass options to dejagnu pretty easily using RUNTESTFLAGS.
What back-end programs would these be passed on to? (I don't think a
target=i686 would make much sense to, say, a `cp' command...)
> That
> aside though, what are you doing, and what are you trying to
> accomplish? :)
Just trying to get the routine checks in the test/ subdire...
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
...flush $chan
+ }
+ return
+ }
+
set path [file join $objdir $subdir]
#Make Output Directory if it does not exist already
Index: Makefile
===================================================================
--- Makefile (revision 65432)
+++ Makefile (working copy)
@@ -26,6 +26,8 @@
RUNTESTFLAGS := $(VERBOSE)
endif
+FORCETGT := FORCE
+
ifdef TESTSUITE
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
@@ -63,6 +65,7 @@
CLEANED_TESTONE := $(patsubst test/%,%,$(CLEANED_TESTONE))
SUBDIR := $(shell dirname $(CLEANED_TESTONE...
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
On Wed, Feb 25, 2009 at 10:26:02AM -0800, Chris Lattner wrote:
>
> On Feb 24, 2009, at 10:03 PM, Julien Lerouge wrote:
>
> > On Tue, Feb 24, 2009 at 06:24:17PM -0800, Julien Lerouge wrote:
> >> I haven't tested with objdir != srcdir.
> >
> > Ok, that was broken. Attached is a smaller diff that should work in
> > all
> > cases.
>
> This
2006 Dec 22
0
[LLVMdev] in Cygwin problems
...=" "LIBCFLAGS=-O2" "LIBCFLAGS_FOR_TARGET=-O2 -O
> 2" "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/sh" "EXP
> ECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/tmp/llvm/install" "infodir=/tmp/llvm/install/info"
> "libdir=/tmp/llvm/install/lib" "prefix=/tmp/llvm/install" "tooldir=/tmp/llvm/install/i686-pc-cygwin" "AR=ar"
> "AS=as" "CC=gcc" "CXX=c...
2008 Dec 16
0
[LLVMdev] ICE while building llvm-gcc
On Dec 16, 2008, at 10:34 AM, Jeffrey Yasskin wrote:
> I'm on OSX 10.5, trying to build a svn checkout of llvm-gcc. I've also
> checked out llvm. Both are synced to r61075.
hi Jeffrey,
This patch should have fixed the problem:
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20081215/071210.html
Please update and try again, sorry for the breakage!
-Chris
2009 Feb 26
1
[LLVMdev] [PATCH] Parallelized make check
...}
+ return
+ }
+
set path [file join $objdir $subdir]
#Make Output Directory if it does not exist already
Index: test/Makefile
===================================================================
--- test/Makefile (revision 65468)
+++ test/Makefile (working copy)
@@ -26,6 +26,9 @@
RUNTESTFLAGS := $(VERBOSE)
endif
+# Leave the possibility to override on the command line.
+FORCESITEEXP ?= FORCE
+
ifdef TESTSUITE
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
@@ -80,6 +83,7 @@
clean::
$(RM) -rf `find $(LLVM_OBJ_RO...
2009 Feb 25
2
[LLVMdev] [PATCH] Parallelized make check
On Feb 24, 2009, at 10:03 PM, Julien Lerouge wrote:
> On Tue, Feb 24, 2009 at 06:24:17PM -0800, Julien Lerouge wrote:
>> I haven't tested with objdir != srcdir.
>
> Ok, that was broken. Attached is a smaller diff that should work in
> all
> cases.
This sounds really cool Julien! Two questions: 1) does it preserve
the checking that the existing tcl stuff does, which
2004 Oct 04
1
[LLVMdev] cfrontend-1.3.source: Compilation error
...DFLAGS=" "LIBCFLAGS=-g -O2" "LIBCFLAGS_FOR_TARGET=-O2 -g -O2" "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/sh" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/usr/local" "infodir=/usr/local/info" "libdir=/usr/local/lib" "prefix=/usr/local" "tooldir=/usr/local/i686-pc-cygwin" "AR=ar" "AS=as" "CC=gcc" "CXX=c++" "LD=/usr/lib/gcc-lib/i686-pc-cy...
2008 Dec 17
2
[LLVMdev] ICE while building llvm-gcc
...LL=/opt/local/bin/ginstall -c"
"INSTALL_DATA=/opt/local/bin/ginstall -c -m 644"
"INSTALL_PROGRAM=/opt/local/bin/ginstall -c"
"INSTALL_SCRIPT=/opt/local/bin/ginstall -c" "LEX=flex" "M4=gm4"
"MAKE=make" "RUNTEST=runtest" "RUNTESTFLAGS=" "SHELL=/bin/sh"
"YACC=bison -y" "`echo 'ADAFLAGS=' | sed -e s'/[^=][^=]*=$/XFOO=/'`"
"AR_FLAGS=rc" "`echo 'BOOT_ADAFLAGS=' | sed -e
s'/[^=][^=]*=$/XFOO=/'`" "BOOT_CFLAGS=-g -O2 -mdynamic-no-pic"
"...
2008 Dec 16
2
[LLVMdev] ICE while building llvm-gcc
I'm on OSX 10.5, trying to build a svn checkout of llvm-gcc. I've also
checked out llvm. Both are synced to r61075.
I'm using Apple's gcc 4.0.1:
$ gcc -v
Using built-in specs.
Target: i686-apple-darwin9
Configured with: /var/tmp/gcc/gcc-5488~2/src/configure
--disable-checking -enable-werror --prefix=/usr --mandir=/share/man
--enable-languages=c,objc,c++,obj-c++