diff options
| author | Graydon Hoare <[email protected]> | 2011-03-20 01:12:26 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-20 01:12:26 -0700 |
| commit | 4691a7515079c56895bae727b2b7aa92a784f1a4 (patch) | |
| tree | c61db45b74910879fb033278140bc9668c4c881b /configure | |
| parent | Add build rules for stage1. (diff) | |
| download | rust-4691a7515079c56895bae727b2b7aa92a784f1a4.tar.xz rust-4691a7515079c56895bae727b2b7aa92a784f1a4.zip | |
Begin porting rules for testsuite execution.
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 19 |
1 files changed, 3 insertions, 16 deletions
@@ -33,13 +33,6 @@ copy() { cp $1 $2 } -make_test_subdirs() { - for t in run-pass run-fail compile-fail - do - make_dir $1/test/$t - done -} - putvar() { local T eval T=\$$1 @@ -89,19 +82,13 @@ for i in \ doc \ boot/fe boot/me boot/be boot/driver boot/util \ rt rt/isaac rt/bigint rt/sync rt/test \ - llvmext + llvmext \ + state0 stage1 stage2 \ + test/run-pass test/run-fail test/compile-fail do make_dir $i done -make_test_subdirs boot - -for i in 0 1 2 -do - make_dir stage$i - make_test_subdirs stage$i -done - msg "inspecting environment" CFG_OSTYPE=$(uname -s) |