This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

Committed: fix spurious gcc.dg/cpp/direct2s.c regression


My autotester for cris-axis-elf yells about the following
(apparently generic) regression:
gcc.sum gcc.dg/cpp/direct2s.c

Looking in gcc.log, the cause is apparent:
Excess errors:
/tmp/hpautotest-gcc1/gcc/gcc/testsuite/gcc.dg/cpp/direct2s.c:35: warning: current file is older than direct2.c

It's obviously a missing depencency in gcc_update (see line
above in diff context), thus committed.  Sanity-checked by
executing gcc_update and observing the file being touched.

	* gcc_update (files_and_dependencies): Handle
	gcc/testsuite/gcc.dg/cpp/direct2s.c.

Index: gcc_update
===================================================================
--- gcc_update	(revision 126154)
+++ gcc_update	(working copy)
@@ -81,6 +81,9 @@ gcc/java/keyword.h: gcc/java/keyword.gpe
 # testsuite
 # Without this, _Pragma3.c can have a false negative.
 gcc/testsuite/gcc.dg/cpp/_Pragma3.c: gcc/testsuite/gcc.dg/cpp/mi1c.h
+# Similarly, without this, you will see:
+# direct2s.c:35: warning: current file is older than direct2.c
+gcc/testsuite/gcc.dg/cpp/direct2s.c: gcc/testsuite/gcc.dg/cpp/direct2.c
 # And libraries, at last
 libbanshee/configure: libbanshee/configure.ac
 libmudflap/configure: libmudflap/configure.ac

brgds, H-P


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