Displaying 11 results from an estimated 11 matches for "runllvmtests".
2010 Jul 27
3
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
...t; diff --git a/test/MC/COFF/dg.exp b/test/MC/COFF/dg.exp
>> new file mode 100644
>> index 0000000..7b7bd4e
>> --- /dev/null
>> +++ b/test/MC/COFF/dg.exp
>> @@ -0,0 +1,5 @@
>> +load_lib llvm.exp
>> +
>> +if { [llvm_supports_target X86] } {
>> + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
>> +}
>
> This should be *.{s}.
This has to be *.{ll} for now because llvm-mc cannot parse COFF .s files.
> --
>
> Otherwise looks good to me!
>
> - Daniel
- Michael Spencer
2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
Hello,
The attached patch adds the jcheck target equivalent to make check, but
that can run with a -j flag ($ make jcheck -jX).
It does not interfere with the regular check, but rather builds on top
of the check-one target: it first generates a list of tests to run using
RunLLVMTests, and then run those tests according to the supplied -j
flag, invoking the check-one target for each one of them.
One minor change is that the check-one target can take an absolute path
name for the test, and that the site.exp is not regenerated for the
check-one target.
The created log is called...
2010 Jul 30
0
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
...b/test/MC/COFF/dg.exp
>>> new file mode 100644
>>> index 0000000..7b7bd4e
>>> --- /dev/null
>>> +++ b/test/MC/COFF/dg.exp
>>> @@ -0,0 +1,5 @@
>>> +load_lib llvm.exp
>>> +
>>> +if { [llvm_supports_target X86] } {
>>> + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
>>> +}
>>
>> This should be *.{s}.
>
> This has to be *.{ll} for now because llvm-mc cannot parse COFF .s files.
Oh, right.
- Daniel
>
>> --
>>
>> Otherwise looks good to me!
>>
>> - D...
2010 Jul 30
2
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
...t; new file mode 100644
>>>> index 0000000..7b7bd4e
>>>> --- /dev/null
>>>> +++ b/test/MC/COFF/dg.exp
>>>> @@ -0,0 +1,5 @@
>>>> +load_lib llvm.exp
>>>> +
>>>> +if { [llvm_supports_target X86] } {
>>>> + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
>>>> +}
>>>
>>> This should be *.{s}.
>>
>> This has to be *.{ll} for now because llvm-mc cannot parse COFF .s files.
>
> Oh, right.
>
> - Daniel
>
>>
>>> --
>>>
>&...
2010 Jul 26
0
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
On 26 July 2010 18:08, Michael Spencer <bigcheesegs at gmail.com> wrote:
> On Mon, Jul 26, 2010 at 12:04 PM, Aaron Gray <aaronngray.lists at gmail.com>
> wrote:
> > You probably want to add Cygwin and MinGW32 Triples as well :-
> > case Triple::Win32:
> > + case Triple::Cygwin:
> > + case Triple::MinGW32:
> > return new
2010 Jul 26
2
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
On Mon, Jul 26, 2010 at 12:04 PM, Aaron Gray <aaronngray.lists at gmail.com> wrote:
> You probably want to add Cygwin and MinGW32 Triples as well :-
> case Triple::Win32:
> + case Triple::Cygwin:
> + case Triple::MinGW32:
> return new WindowsX86AsmBackend (T);
> Aaron
Can someone test this on those platforms? That change would effect
quite a few people.
-
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
...p.com
-------------- next part --------------
Index: lib/llvm.exp
===================================================================
--- lib/llvm.exp (revision 65432)
+++ lib/llvm.exp (working copy)
@@ -116,8 +116,18 @@
# This procedure runs the set of tests for the test_source_files array.
proc RunLLVMTests { test_source_files } {
global srcroot objroot srcdir objdir subdir target_triplet llvmgcc_version
+ global listtests
set timeout 60
+ if { [ string length "$listtests" ] } {
+ set chan [open $listtests a]
+ foreach test $test_source_files {
+ puts $chan "$test&q...
2010 Jul 30
0
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
...>>> index 0000000..7b7bd4e
>>>>> --- /dev/null
>>>>> +++ b/test/MC/COFF/dg.exp
>>>>> @@ -0,0 +1,5 @@
>>>>> +load_lib llvm.exp
>>>>> +
>>>>> +if { [llvm_supports_target X86] } {
>>>>> + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
>>>>> +}
>>>>
>>>> This should be *.{s}.
>>>
>>> This has to be *.{ll} for now because llvm-mc cannot parse COFF .s files.
>>
>> Oh, right.
>>
>> - Daniel
>>
>...
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
2009 Feb 26
1
[LLVMdev] [PATCH] Parallelized make check
...----- next part --------------
Index: test/lib/llvm.exp
===================================================================
--- test/lib/llvm.exp (revision 65468)
+++ test/lib/llvm.exp (working copy)
@@ -116,8 +116,18 @@
# This procedure runs the set of tests for the test_source_files array.
proc RunLLVMTests { test_source_files } {
global srcroot objroot srcdir objdir subdir target_triplet llvmgcc_version
+ global listtests
set timeout 60
+ if { [ string length "$listtests" ] } {
+ set chan [open $listtests a]
+ foreach test $test_source_files {
+ puts $chan "$test&q...
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