mirror of https://github.com/CGAL/cgal
Change the regex so that it matches sentences like "NOTICE: Some of the
executables in this directory need the TAUCS library and will not be compiled." or "This demo needs the CGAL ImageIO library, and will not be compiled."
This commit is contained in:
parent
762634c261
commit
6c9d556a14
|
|
@ -48,7 +48,7 @@ print_testresult()
|
||||||
then
|
then
|
||||||
RESULT="w"
|
RESULT="w"
|
||||||
else
|
else
|
||||||
if grep -E -q 'NOTICE: This [^ ]+ (require|need)' CompilerOutput_$1
|
if grep -E -q 'NOTICE: .*(need|require).*and.*will not be' CompilerOutput_$1
|
||||||
then
|
then
|
||||||
RESULT="r"
|
RESULT="r"
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue