diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-11-03 17:11:23 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-11-03 17:11:23 +0000 |
commit | 1845e9b4c7ed91694b23ea9acf4019baf9e37e7a (patch) | |
tree | 57b966dd1b0fc843f2fc5f1f808796ef3d38c150 | |
parent | 7206bf9e9f6e82d0529ba0130640d2dd7dc67e3a (diff) | |
download | bcm5719-llvm-1845e9b4c7ed91694b23ea9acf4019baf9e37e7a.tar.gz bcm5719-llvm-1845e9b4c7ed91694b23ea9acf4019baf9e37e7a.zip |
CONFIGURATION isn't spelled Configuration, it's spelled BuildMode.
Due to qmtest's or llvm.py's lousy error checking, this single error
causes qmtest to fork-bomb the machine, filling the process table with
python processes that do nothing. Clearly, better error checking is
needed.
llvm-svn: 17449
-rw-r--r-- | llvm/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Makefile b/llvm/test/Makefile index 7dac2af7718..466886ea994 100644 --- a/llvm/test/Makefile +++ b/llvm/test/Makefile @@ -44,7 +44,7 @@ endif # CONTEXT= -c "srcroot=$(LLVM_SRC_ROOT)" \ -c "buildroot=$(LLVM_OBJ_ROOT)" \ - -c "buildtype=$(Configuration)" \ + -c "buildtype=$(BuildMode)" \ -c "tmpdir=$(LLVM_OBJ_ROOT)/test/tmp" \ -c "coresize=0" \ -c "cc=$(CC)" \ |