CMSIS-DSP: Added test patterns for Statistics functions.
Added MVE code for statistics functions.
Improvement to test framework.
diff --git a/CMSIS/DSP/Testing/processTests.py b/CMSIS/DSP/Testing/processTests.py
index deef594..14b29c5 100644
--- a/CMSIS/DSP/Testing/processTests.py
+++ b/CMSIS/DSP/Testing/processTests.py
@@ -5,7 +5,7 @@
 
 
 parser = argparse.ArgumentParser(description='Parse test description')
-parser.add_argument('-f', nargs='?',type = str, default="test.txt", help="File path")
+parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="File path")
 
 parser.add_argument('-p', nargs='?',type = str, default="Patterns", help="Pattern dir path")
 parser.add_argument('-d', nargs='?',type = str, default="Parameters", help="Parameter dir path")
@@ -23,11 +23,12 @@
 
 if args.f is not None:
     # Create a treeelemt object
-    p = parse.Parser()
+    #p = parse.Parser()
     # Create a codegen object
     c = TestScripts.CodeGen.CodeGen(args.p,args.d, args.e)
     # Parse the test description.
-    root = p.parse(args.f)
+    #root = p.parse(args.f)
+    root=parse.loadRoot(args.f)
     d.deprecate(root,args.others)
     #print(root)
     # Generate code with the tree of tests