-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
1,395 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
DaedalicTestAutomationPlugin/Content/ReportTemplates/PerformanceReport.template.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<link rel="stylesheet" href="bootstrap.min.css"> | ||
<title>Performance Report</title> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Performance Report</h1> | ||
<div class="row"> | ||
<div class="col-3"><strong>Start Time:</strong></div> | ||
<div class="col-3">{START_TIME}</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-3"><strong>Total Duration (Seconds):</strong></div> | ||
<div class="col-3">{TOTAL_DURATION}</div> | ||
</div> | ||
|
||
{MAP_RESULTS} | ||
</div> | ||
</body> | ||
</html> |
10 changes: 10 additions & 0 deletions
10
...stAutomationPlugin/Content/ReportTemplates/PerformanceReportBudgetViolation.template.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<tr> | ||
<td>{LOCATION}</td> | ||
<td>{PREVIOUS}</td> | ||
<td>{NEXT}</td> | ||
<td>{FPS}</td> | ||
<td>{GAME_TIME} ms</td> | ||
<td>{RENDER_TIME} ms</td> | ||
<td>{GPU_TIME} ms</td> | ||
<td><a href="{SCREENSHOT_PATH}" target="_blank"><img src="{SCREENSHOT_PATH}" class="img-fluid" alt="{SCREENSHOT_PATH}"/></a></td> | ||
</tr> |
24 changes: 24 additions & 0 deletions
24
DaedalicTestAutomationPlugin/Content/ReportTemplates/PerformanceReportMap.template.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<p></p> | ||
<h2>{MAP_NAME}</h2> | ||
<div class="row"> | ||
<div class="col-3"><strong>Duration (Seconds):</strong></div> | ||
<div class="col-3">{MAP_DURATION}</div> | ||
</div> | ||
<p></p> | ||
<table class="table table-striped"> | ||
<thead> | ||
<tr> | ||
<th scope="col">Location</th> | ||
<th scope="col">Between</th> | ||
<th scope="col">And</th> | ||
<th scope="col">FPS</th> | ||
<th scope="col">Game</th> | ||
<th scope="col">Render</th> | ||
<th scope="col">GPU</th> | ||
<th scope="col">Screenshot</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{BUDGET_VIOLATIONS} | ||
</tbody> | ||
</table> |
7 changes: 7 additions & 0 deletions
7
DaedalicTestAutomationPlugin/Content/ReportTemplates/bootstrap.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+112 KB
DaedalicTestAutomationPlugin/Content/TestPerformance/BP_TestPerformancePawn.uasset
Binary file not shown.
Binary file added
BIN
+634 KB
DaedalicTestAutomationPlugin/Content/TestPerformance/TestPerformance.umap
Binary file not shown.
6 changes: 3 additions & 3 deletions
6
DaedalicTestAutomationPlugin/DaedalicTestAutomationPlugin.uplugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
...gin/Source/DaedalicTestAutomationPlugin/Private/DaeTestAssumeBlueprintFunctionLibrary.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.