This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Problems testing binutils with DejaGnu 1.6+


Hello,

I'm testing binutils (git master) with overridden RUNTESTFLAGS in order
to produce XML reports:

> $ make -k RUNTESTFLAGS='--all --xml' check

This ran fine with runtest 1.5.1, but produces the following error with
runtest 1.6:

> Making a new site.exp file...
> srcdir=`cd . && pwd`; export srcdir; \
> r=`pwd`; export r; \
> LC_ALL=C; export LC_ALL; \
> EXPECT=expect; export EXPECT; \
> runtest=runtest; \
> if /bin/bash -c "$runtest --version" > /dev/null 2>&1; then \
>   CC="gcc" CC_FOR_BUILD="gcc" \
>   CC_FOR_TARGET="gcc" CFLAGS_FOR_TARGET="-g -O2" \
>     $runtest --tool binutils --srcdir ${srcdir}/testsuite \
>         --all --xml; \
> else echo "WARNING: could not find \`runtest'" 1>&2; :;\
> fi
> WARNING: Couldn't find tool init file
> couldn't open "/home/nadezhda/TeamCity/buildAgent/work/412eaf977238ca9a/binutils/testsuite": illegal operation on a directory
> Makefile:1322: recipe for target 'check-DEJAGNU' failed
>     while executing
> "open [file join $outdir $xml_file_name] w"
>     (procedure "open_logs" line 19)
>     invoked from within
> "open_logs"
>     (file "/usr/share/dejagnu/runtest.exp" line 1223)
> make[5]: *** [check-DEJAGNU] Error 1
> make[4]: *** [check-am] Error 2
> make[3]: *** [check-recursive] Error 1
> make[2]: *** [check] Error 2
> make[1]: *** [check-binutils] Error 2
> make: *** [do-check] Error 2

The "check-DEJAGNU" target looks identical on systems with runtest 1.5
and runtest 1.6:

> 1321 check-DEJAGNU: site.exp
> 1322         srcdir=`cd $(srcdir) && pwd`; export srcdir; \
> 1323         r=`pwd`; export r; \
> 1324         LC_ALL=C; export LC_ALL; \
> 1325         EXPECT=$(EXPECT); export EXPECT; \
> 1326         runtest=$(RUNTEST); \
> 1327         if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
> 1328           CC="$(CC)" CC_FOR_BUILD="$(CC_FOR_BUILD)" \
> 1329           CC_FOR_TARGET="$(CC_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS)" \
> 1330                 $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
> 1331                         $(RUNTESTFLAGS); \
> 1332         else echo "WARNING: could not find \`runtest'" 1>&2; :;\
> 1333         fi

In order to work around the issue, I have to add an explicit argument to
the --xml option of runtest 1.6 (ignored by runtest 1.5):

> $ make -k RUNTESTFLAGS='--all --xml=testsuite.xml' check

Is this a problem with binutils (Makefile.am/site.exp), or should I
report a bug to DejaGnu maintainers?

Regards,
Andrey.

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]