search for: test_source_fil

Displaying 5 results from an estimated 5 matches for "test_source_fil".

Did you mean: test_source_files
2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
...P Public Key from: keyserver.pgp.com -------------- next part -------------- Index: lib/llvm.exp =================================================================== --- lib/llvm.exp (revision 65423) +++ 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 { +...
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
...P Public Key from: keyserver.pgp.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 { +...
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
...om: keyserver.pgp.com -------------- 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 { +...
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