[LLVMdev] 'make check' broken?

David Greene dag at cray.com
Mon Aug 3 14:31:17 PDT 2009


On Monday 03 August 2009 16:23, David Greene wrote:
> I'm now getting this trying to 'make check' on llvm:
>
> ./bin/runtest 1 --ignore "llvm2cpp.exp ocaml.exp" )
> WARNING: Couldn't find the global config file.
>
> Illegal Argument "1"
> try "runtest --help" for option list
>
> Anyone else seeing this?  I just did a full clean and rebuild and still get
> the problem.

Ah, something changed in the Makefile.  It now adds $(VERBOSE) as a runtest 
argument.  That seems wrong, since in Makefile.rules:

ifdef TOOL_VERBOSE
  C.Flags += -v
  CXX.Flags += -v
  LD.Flags += -v
  VERBOSE := 1
endif

It seems the line in test/Makefile has been there for a while:

 47602     ggreif ifdef VERBOSE
 47602     ggreif RUNTESTFLAGS := $(VERBOSE)
 47602     ggreif endif

------------------------------------------------------------------------
r47602 | ggreif | 2008-02-26 06:08:55 -0600 (Tue, 26 Feb 2008) | 24 lines

How did this ever work?  Does no one do 'make VERBOSE=1?'  It worked a couple
weeks ago, at least.

                                -Dave



More information about the llvm-dev mailing list