aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2011-03-20 01:12:26 -0700
committerGraydon Hoare <[email protected]>2011-03-20 01:12:26 -0700
commit4691a7515079c56895bae727b2b7aa92a784f1a4 (patch)
treec61db45b74910879fb033278140bc9668c4c881b /configure
parentAdd build rules for stage1. (diff)
downloadrust-4691a7515079c56895bae727b2b7aa92a784f1a4.tar.xz
rust-4691a7515079c56895bae727b2b7aa92a784f1a4.zip
Begin porting rules for testsuite execution.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure19
1 files changed, 3 insertions, 16 deletions
diff --git a/configure b/configure
index a6f2e326..8125e2c4 100755
--- a/configure
+++ b/configure
@@ -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)