[llvm-commits] [llvm] r67349 - in /llvm/trunk/test: BugPoint/misopt-basictest.ll lib/llvm.exp
Nick Lewycky
nicholas at mxc.ca
Fri Mar 20 00:53:50 PDT 2009
Evan Cheng wrote:
> Author: evancheng
> Date: Thu Mar 19 19:14:09 2009
> New Revision: 67349
>
> URL: http://llvm.org/viewvc/llvm-project?rev=67349&view=rev
> Log:
> Fix typo's.
Hi Evan. Even after this patch, I'm still seeing this error:
$ make check
llvm[0]: Running test suite
make[1]: Entering directory `/home/nicholas/llvm-commit/test'
Making a new site.exp file...
( ulimit -t 600 ; ulimit -d 512000 ; \
PATH="/home/nicholas/llvm-commit/Debug/bin:/home/nicholas/llvm-commit/test/Scripts:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:.:/usr/games/bin:/usr/local/jdk1.1/bin"
\
/usr/bin/runtest --ignore "llvm2cpp.exp" )
ERROR: tcl error sourcing /home/nicholas/llvm-commit/test/site.exp.
can't read "bugpoint_topts": no such variable
while executing
"set bugpoint_topts "
(file "/home/nicholas/llvm-commit/test/site.exp" line 23)
invoked from within
"source /home/nicholas/llvm-commit/test/site.exp"
("uplevel" body line 1)
invoked from within
"uplevel #0 source /home/nicholas/llvm-commit/test/site.exp"
invoked from within
"catch "uplevel #0 source $file""
make[1]: *** [check-local] Error 1
make[1]: Leaving directory `/home/nicholas/llvm-commit/test'
make: *** [check] Error 2
I'm going to revert this and r67334 now.
Nick
>
> Modified:
> llvm/trunk/test/BugPoint/misopt-basictest.ll
> llvm/trunk/test/lib/llvm.exp
>
> Modified: llvm/trunk/test/BugPoint/misopt-basictest.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/BugPoint/misopt-basictest.ll?rev=67349&r1=67348&r2=67349&view=diff
>
> ==============================================================================
> --- llvm/trunk/test/BugPoint/misopt-basictest.ll (original)
> +++ llvm/trunk/test/BugPoint/misopt-basictest.ll Thu Mar 19 19:14:09 2009
> @@ -1,4 +1,4 @@
> -; RUN: bugpoint %s -dce -bugpoint-deletecalls -simplifycfg -silence-passes %bugpoint_tops
> +; RUN: bugpoint %s -dce -bugpoint-deletecalls -simplifycfg -silence-passes %bugpoint_topts
>
> @.LC0 = internal global [13 x i8] c"Hello World\0A\00" ; <[13 x i8]*> [#uses=1]
>
>
> Modified: llvm/trunk/test/lib/llvm.exp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lib/llvm.exp?rev=67349&r1=67348&r2=67349&view=diff
>
> ==============================================================================
> --- llvm/trunk/test/lib/llvm.exp (original)
> +++ llvm/trunk/test/lib/llvm.exp Thu Mar 19 19:14:09 2009
> @@ -77,8 +77,8 @@
> regsub -all {%llvmdsymutil} $new_line "$llvmdsymutil" new_line
> #replace %llvmlibsdir with configure library directory
> regsub -all {%llvmlibsdir} $new_line "$llvmlibsdir" new_line
> - #replace %bugpoint_tops with actual bugpoint target options
> - regsub -all {%bugpoint_tops} $new_line "$bugpoint_topts" new_line
> + #replace %bugpoint_topts with actual bugpoint target options
> + regsub -all {%bugpoint_topts} $new_line "$bugpoint_topts" new_line
> #replace %p with path to source,
> regsub -all {%p} $new_line [file join $srcdir $subdir] new_line
> #replace %s with filename
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
More information about the llvm-commits
mailing list