# HG changeset patch # User Chris Cannam # Date 1416228862 0 # Node ID 314eea778b805e9308494e0d9eea6516624f7ee1 # Parent 86d8a699dfbed931a8e53a7db42af4098f760695 Check for VamPy boilerplate text and report it if found diff -r 86d8a699dfbe -r 314eea778b80 TestStaticData.cpp --- a/TestStaticData.cpp Fri Sep 12 21:58:45 2014 +0100 +++ b/TestStaticData.cpp Mon Nov 17 12:54:22 2014 +0000 @@ -147,6 +147,11 @@ { if (text == "") { return warning(desc + " is empty"); + } else if (text == "Licence information not available." || + text == "VamPy Plugin." || + text == "Not given. (Hint: Implement getDescription method.)" || + text == "VamPy Plugin (Noname)") { + return warning(desc + " is missing (returns VamPy boilerplate text)"); } return success(); }