You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
optionsSet.Add("?|help|h","Prints out the options.", option =>help=option!=null);
65
-
optionsSet.Add(
66
-
"results|testresultsxmlsource=",
67
-
"REQUIRED - Path to a test result XML filename OR directory. Directories are searched resursively. You can repeat this option with multiple result file or directory paths.",
"report|reportdirpath:","OPTIONAL - Path to where the report will be written. Default is current working directory.",
74
-
performanceBenchmark.AddReportDirPath);
75
-
optionsSet.Add("failonbaseline",
76
-
"Enable return '1' by the reporter if a baseline is passed in and one or more matching configs is out of threshold. Disabled is default. Use option to enable, or use option and append '-' to explicitly disable.",
optionsSet.Add("?|help|h","Prints out the options.", option =>help=option!=null);
65
+
optionsSet.Add("dataversion|version=","Sets Expected Perf Data Version for Results and Baseline Files (1 = V1 2 = V2). Versions of Unity Perf Framework 2.0 or newer will use the V2 data format. If no arg is provided we assume the format is V2", version =>performanceBenchmark.SetDataVersion(version));
66
+
optionsSet.Add("fileformat|format=","Sets Expected File Format for Results and Baseline Files. If no arg is provided we assume the format is XML", filtype =>performanceBenchmark.SetFileType(filtype));
67
+
optionsSet.Add(
68
+
"results|testresultsxmlsource=",
69
+
"REQUIRED - Path to a test result XML filename OR directory. Directories are searched resursively. You can repeat this option with multiple result file or directory paths.",
"report|reportdirpath:","OPTIONAL - Path to where the report will be written. Default is current working directory.",
76
+
performanceBenchmark.AddReportDirPath);
77
+
optionsSet.Add("failonbaseline",
78
+
"Enable return '1' by the reporter if a baseline is passed in and one or more matching configs is out of threshold. Disabled is default. Use option to enable, or use option and append '-' to explicitly disable.",
0 commit comments