This repository was archived by the owner on May 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDotnetBenchmarker.cs
66 lines (52 loc) · 2.26 KB
/
DotnetBenchmarker.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// File: DotnetBenchmarker.cs
// Class: DotnetBenchmarker
// This is our little script :)
// WARNING: FOR EXTERNALLY SUPPLIED FILES, ENSURE THEY ARE WRITTEN WITH THE LF
// LINE TERMINATOR! I DON'T WANT TO SPEND OVER AN HOUR AGAIN DEALING
// WITH A FILE NOT FOUND ERROR IN BASH, ALL BECAUSE OF THE ADDITIONAL
// CLRF CHARACTER SCREWING UP ALL THE NON-HARD-CODED TEXT.
// Funny Note: When running tests without a build phase, we are uploading the
// files at the root of this repo instead LOL. I don't even know how this tool
// is supposed to work anymore :')
namespace DotnetBenchmarker;
internal class BenchmarkerCore
{
static void Main(string[] args)
{
// Main Script Here!
var optsBank = new AppOptionsBank();
optsBank.Init(args);
PrepareResourcesTree();
// Download, copy, and build all the necessary stuff for our given
// configurations.
var workshop = new AssembliesWorkshop(optsBank.GetAssemblies(),
optsBank.GetConfigurations());
workshop.Run(optsBank.Rebuild);
System.Console.WriteLine("\nAll builds finished successfully!\n");
if (optsBank.BuildOnly)
{
System.Console.WriteLine("Exiting now...\n");
System.Environment.Exit(0);
}
// Submit to crank and record the results of the runs.
var runner = new CrankRunner(optsBank.AppDesc.Configurations,
optsBank.Iterations);
runner.Execute();
System.Console.WriteLine("\nAll tests runs finished!\n");
}
static void PrepareResourcesTree()
{
AppPaths resourcesPaths = Constants.Paths;
if (!System.IO.Directory.Exists(resourcesPaths.Logs))
System.IO.Directory.CreateDirectory(resourcesPaths.Logs);
if (!System.IO.Directory.Exists(resourcesPaths.Resources))
System.IO.Directory.CreateDirectory(resourcesPaths.Resources);
if (!System.IO.Directory.Exists(resourcesPaths.Results))
System.IO.Directory.CreateDirectory(resourcesPaths.Results);
}
// This functionie is only used for testing individual components :)
static void TestExit()
{
System.Environment.Exit(3);
}
}