search for: listtests

Displaying 6 results from an estimated 6 matches for "listtests".

2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
...======== --- 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 { + puts $chan "$test" + flush $chan + } + return + } + set path [file join $objdir $subdir] #Make Output Directory if...
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
...======== --- 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" + flush $chan + } + return + } + set path [file join $objdir $subdir] #Make Output Directory if...
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
...-- 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" + flush $chan + } + return + } + set path [file join $objdir $subdir] #Make Output Directory if...
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 Apr 21
2
Resizing a ListCtrl
Hi Guys, I''m having serious troubles resizing a dialog with a ListCtrl. The ctrl will not resize horizontally no matter what I''m doing. I''ve attached a sample code below. Any help will be greatly appreciated, as I really like wxRuby :) I''ve also tried to copy from the example from listtest.rbw, but that also doesn''t seem to work. Another thing