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
-- Enable/Disable Console Colors - this may be needed because cmd.exe and powershell.exe do not support ANSI Color Escape Sequences. The Windows Terminal Application is needed
@@ -38,7 +43,15 @@ local pipeline = Prometheus.Pipeline:new({
38
43
-- "Number" for names like this : _1, _2, _3, ... - Not recomended
39
44
pipeline:setNameGenerator("MangledShuffled");
40
45
41
-
print("Performing Prometheus Tests ...")
46
+
localfunctiondescribePlatform()
47
+
returnisWindowsand"Windows" or"Linux"
48
+
end
49
+
50
+
print(string.format(
51
+
"Performing Prometheus Tests (iterations=%d per file/preset, platform=%s)...",
52
+
iterationCount,
53
+
describePlatform()
54
+
))
42
55
localfunctionscandir(directory)
43
56
locali, t, popen=0, {}, io.popen
44
57
localpfile=popen(isWindowsand'dir "'..directory..'" /b' or'ls -a "'..directory..'"')
@@ -112,25 +125,27 @@ for i, filename in ipairs(scandir(testdir)) do
0 commit comments