|
From: <sv...@va...> - 2005-12-08 22:38:48
|
Author: njn
Date: 2005-12-08 22:38:44 +0000 (Thu, 08 Dec 2005)
New Revision: 5316
Log:
Fail gracefully if 'make check' hasn't been run.
Modified:
branches/COMPVBITS/tests/vg_regtest.in
Modified: branches/COMPVBITS/tests/vg_regtest.in
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/COMPVBITS/tests/vg_regtest.in 2005-12-08 22:24:07 UTC (rev 5=
315)
+++ branches/COMPVBITS/tests/vg_regtest.in 2005-12-08 22:38:44 UTC (rev 5=
316)
@@ -328,6 +328,9 @@
# Ignore dirs into which we should not recurse.
if ($dir =3D~ /^(BitKeeper|CVS|SCCS|docs|doc)$/) { return; }
=20
+ (-x "$tests_dir/tests/cputest") or die=20
+ "vg_regtest: 'cputest' is missing. Did you forget to 'make chec=
k'?\n";
+ =20
# Ignore any dir whose name matches that of an architecture which is=
not
# the architecture we are running on (eg. when running on x86, ignor=
e ppc/
# directories).
|