├── .gitignore ├── .gitlab-ci.yml ├── CODEOWNERS ├── CONTRIBUTING ├── CONTRIBUTIONS.md ├── Changelog.md ├── LICENSE.md ├── MismatchedConfigTooltip.png ├── README.md ├── TestConfigWithMismatchedItems.png ├── Third Party Notices.md ├── UnityPerformanceBenchmarkComponents.png ├── UnityPerformanceBenchmarkReport.png ├── UnityPerformanceBenchmarkReporter.sln ├── UnityPerformanceBenchmarkReporter.sln.DotSettings.user ├── UnityPerformanceBenchmarkReporter ├── ESupportedFileTypes.cs ├── Entities │ ├── Data.cs │ ├── PerformanceTestResult.cs │ ├── PerformanceTestRun.cs │ ├── PerformanceTestRunResult.cs │ ├── SampleGroup.cs │ ├── SampleGroupResult.cs │ ├── TestResult.cs │ └── TestState.cs ├── ExtensionMethods.cs ├── IParser.cs ├── OptionsParser.cs ├── PerformanceBenchmark.cs ├── PerformanceTestRunProcessor.cs ├── Program.cs ├── Report │ ├── Chart.bundle.js │ ├── ReportWriter.cs │ ├── UnityLogo.png │ ├── help-hover.png │ ├── help.png │ ├── styles.css │ └── warning.png ├── TestResultJsonParser.cs ├── TestResultXmlParser.cs ├── TestRunMetadataProcessor.cs ├── UnityPerformanceBenchmarkReporter.csproj └── UnityPerformanceBenchmarkReporter.csproj.user ├── UnityPerformanceBenchmarkReporterTests ├── ExtensionMethodsTests.cs ├── PerformanceBenchmarkTestsBase.cs ├── PerformanceBenchmarkTestsJson.cs ├── PerformanceBenchmarkTestsXML.cs ├── TestData │ ├── BaselineJson │ │ └── baseline.json │ ├── BaselineJson2 │ │ └── baseline2.json │ ├── Baselines │ │ └── baseline.xml │ ├── Baselines2 │ │ └── baseline2.xml │ ├── Results │ │ ├── results.xml │ │ └── results2.xml │ ├── ResultsJson │ │ ├── results.json │ │ └── resultscopy.json │ ├── ResultsJson2 │ │ └── results2.json │ ├── baseline.json │ ├── baseline.xml │ ├── baseline2.json │ ├── baseline2.xml │ ├── results.json │ ├── results.xml │ ├── results2.json │ └── results2.xml └── UnityPerformanceBenchmarkReporterTests.csproj ├── dotnet-install.ps1 └── latest_custom_UnityPerformanceBenchmark_2020-06-29_01-08-13-481.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /CONTRIBUTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/CONTRIBUTIONS.md -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MismatchedConfigTooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/MismatchedConfigTooltip.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/README.md -------------------------------------------------------------------------------- /TestConfigWithMismatchedItems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/TestConfigWithMismatchedItems.png -------------------------------------------------------------------------------- /Third Party Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/Third Party Notices.md -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkComponents.png -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReport.png -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter.sln -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter.sln.DotSettings.user -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/ESupportedFileTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/ESupportedFileTypes.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Entities/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Entities/Data.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Entities/PerformanceTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Entities/PerformanceTestResult.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Entities/PerformanceTestRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Entities/PerformanceTestRun.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Entities/PerformanceTestRunResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Entities/PerformanceTestRunResult.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Entities/SampleGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Entities/SampleGroup.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Entities/SampleGroupResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Entities/SampleGroupResult.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Entities/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Entities/TestResult.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Entities/TestState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Entities/TestState.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/ExtensionMethods.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/IParser.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/OptionsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/OptionsParser.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/PerformanceBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/PerformanceBenchmark.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/PerformanceTestRunProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/PerformanceTestRunProcessor.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Program.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Report/Chart.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Report/Chart.bundle.js -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Report/ReportWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Report/ReportWriter.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Report/UnityLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Report/UnityLogo.png -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Report/help-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Report/help-hover.png -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Report/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Report/help.png -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Report/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Report/styles.css -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/Report/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/Report/warning.png -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/TestResultJsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/TestResultJsonParser.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/TestResultXmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/TestResultXmlParser.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/TestRunMetadataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/TestRunMetadataProcessor.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/UnityPerformanceBenchmarkReporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/UnityPerformanceBenchmarkReporter.csproj -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporter/UnityPerformanceBenchmarkReporter.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporter/UnityPerformanceBenchmarkReporter.csproj.user -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/ExtensionMethodsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/ExtensionMethodsTests.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/PerformanceBenchmarkTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/PerformanceBenchmarkTestsBase.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/PerformanceBenchmarkTestsJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/PerformanceBenchmarkTestsJson.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/PerformanceBenchmarkTestsXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/PerformanceBenchmarkTestsXML.cs -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/BaselineJson/baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/BaselineJson/baseline.json -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/BaselineJson2/baseline2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/BaselineJson2/baseline2.json -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/Baselines/baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/Baselines/baseline.xml -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/Baselines2/baseline2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/Baselines2/baseline2.xml -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/Results/results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/Results/results.xml -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/Results/results2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/Results/results2.xml -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/ResultsJson/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/ResultsJson/results.json -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/ResultsJson/resultscopy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/ResultsJson/resultscopy.json -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/ResultsJson2/results2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/ResultsJson2/results2.json -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/baseline.json -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/baseline.xml -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/baseline2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/baseline2.json -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/baseline2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/baseline2.xml -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/results.json -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/results.xml -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/results2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/results2.json -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/TestData/results2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/TestData/results2.xml -------------------------------------------------------------------------------- /UnityPerformanceBenchmarkReporterTests/UnityPerformanceBenchmarkReporterTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/UnityPerformanceBenchmarkReporterTests/UnityPerformanceBenchmarkReporterTests.csproj -------------------------------------------------------------------------------- /dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/dotnet-install.ps1 -------------------------------------------------------------------------------- /latest_custom_UnityPerformanceBenchmark_2020-06-29_01-08-13-481.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/PerformanceBenchmarkReporter/HEAD/latest_custom_UnityPerformanceBenchmark_2020-06-29_01-08-13-481.html --------------------------------------------------------------------------------