CMSIS-DSP: Added a script to run all the tests.

Tests are getting too big. This script will help to run all the tests
without having to build an executable containing them all.
diff --git a/CMSIS/DSP/Testing/processResult.py b/CMSIS/DSP/Testing/processResult.py
index 65e75f5..4d979c9 100644
--- a/CMSIS/DSP/Testing/processResult.py
+++ b/CMSIS/DSP/Testing/processResult.py
@@ -14,6 +14,7 @@
 
 init()
 
+
 def errorStr(id):
   if id == 1:
      return("UNKNOWN_ERROR")
@@ -526,6 +527,11 @@
   elif args.m:
      analyseResult(resultPath,root,results,args.e,args.b,trace,MathematicaFormatter())
   else:
+     print("")
+     print(Fore.RED + "The cycles displayed by this script must not be trusted." + Style.RESET_ALL)
+     print(Fore.RED + "They are just an indication. The timing code has not yet been validated." + Style.RESET_ALL)
+     print("")
+
      analyseResult(resultPath,root,results,args.e,args.b,trace,TextFormatter())
 
 parser = argparse.ArgumentParser(description='Parse test description')