forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 12
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
github-actions
committed
Jan 15, 2025
1 parent
6ca9022
commit e17c40e
Showing
8,615 changed files
with
1,124,085 additions
and
262,225 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
File renamed without changes.
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
Binary file not shown.
File renamed without changes.
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,151 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
<!-- autogenerated by 'ct_logs' --> | ||
<head> | ||
<title>Common Test Framework Log </title> | ||
<meta http-equiv="cache-control" content="no-cache"></meta> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"></meta> | ||
<link rel="stylesheet" href="ct_default.css" type="text/css"></link> | ||
<script type="text/javascript" src="jquery-latest.js"></script> | ||
<script type="text/javascript" src="jquery.tablesorter.min.js"></script> | ||
<script type="text/javascript"> | ||
// Parser for date format, e.g: Wed Jul 4 2012 11:24:15 | ||
var monthNames = {}; | ||
monthNames["Jan"] = "01"; monthNames["Feb"] = "02"; | ||
monthNames["Mar"] = "03"; monthNames["Apr"] = "04"; | ||
monthNames["May"] = "05"; monthNames["Jun"] = "06"; | ||
monthNames["Jul"] = "07"; monthNames["Aug"] = "08"; | ||
monthNames["Sep"] = "09"; monthNames["Oct"] = "10"; | ||
monthNames["Nov"] = "11"; monthNames["Dec"] = "12"; | ||
$.tablesorter.addParser({ | ||
id: 'CTDateSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 2) return 999999999; | ||
else { | ||
var date = s.match(/(\w{3})\s(\w{3})\s(\d{2})\s(\d{4})\s(\d{2}):(\d{2}):(\d{2})/); | ||
var y = date[4]; var mo = monthNames[date[2]]; var d = String(date[3]); | ||
var h = String(date[5]); var mi = String(date[6]); var sec = String(date[7]); | ||
return (parseInt('' + y + mo + d + h + mi + sec)); }}, | ||
type: 'numeric' }); | ||
// Parser for general text format | ||
$.tablesorter.addParser({ | ||
id: 'CTTextSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 1) return 'zzzzzzzz'; | ||
else if (s == "?") return 'zzzzzzz'; | ||
else if (s == "-") return 'zzzzzz'; | ||
else if (s == "FAILED") return 'A'; | ||
else if (s == "SKIPPED") return 'B'; | ||
else if (s == "OK") return 'C'; | ||
else return '' + s; }, | ||
type: 'text' }); | ||
// Parser for numerical values | ||
$.tablesorter.addParser({ | ||
id: 'CTValSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 1) return '-2'; | ||
else if (s == "?") return '-1'; | ||
else if ((s.search(/(\d{1,})\s/)) >= 0) { | ||
var num = s.match(/(\d{1,})\s/); | ||
return (parseInt('' + num[1])); } | ||
else if ((s.search(/(\d{1,})\.(\d{3})s/)) >= 0) { | ||
var num = s.match(/(\d{1,})\.(\d{3})/); | ||
if (num[1] == "0") return (parseInt('' + num[2])); | ||
else return (parseInt('' + num[1] + num[2])); } | ||
else return '' + s; }, | ||
type: 'numeric' }); | ||
$(document).ready(function() { | ||
$("#SortableTable").tablesorter({ | ||
headers: { | ||
0: { sorter: 'CTTextSorter' }, | ||
1: { sorter: 'CTTextSorter' } | ||
} | ||
}); | ||
$("#SortableTable").trigger("update"); | ||
$("#SortableTable").trigger("appendCache"); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<center> | ||
<h1>Common Test Framework Log</h1> | ||
</center> | ||
<br /> | ||
<h4>CONFIGURATION</h4> | ||
<table id="SortableTable"> | ||
<thead> | ||
<tr><th>Key</th><th>Value</th></tr> | ||
</thead> | ||
<tbody> | ||
<tr class="even"> | ||
<td>config</td> | ||
<td>[{ct_config_plain,["/buildroot/otp/lib/common_test/test_server/ts.config", | ||
"/buildroot/otp/lib/common_test/test_server/ts.unix.config"]}]</td> | ||
</tr> | ||
<tr class="odd"> | ||
<td>event_handler</td> | ||
<td>[]</td> | ||
</tr> | ||
<tr class="even"> | ||
<td>ct_hooks</td> | ||
<td>[{cth_surefire,[{path,"/buildroot/otp/erts/make_test_dir/system_junit.xml"}]}]</td> | ||
</tr> | ||
<tr class="odd"> | ||
<td>ct_hooks_order</td> | ||
<td>undefined</td> | ||
</tr> | ||
<tr class="even"> | ||
<td>enable_builtin_hooks</td> | ||
<td>true</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<br /><br /> | ||
<h4>PRE/POST TEST I/O LOG</h4> | ||
|
||
<ul> | ||
<li><a href="misc_io.log.html#pretest">View I/O logged before the test run</a></li> | ||
<li><a href="misc_io.log.html#posttest">View I/O logged after the test run</a></li> | ||
</ul> | ||
<br /> | ||
<h4>PROGRESS LOG</h4> | ||
<pre> | ||
</pre> | ||
<div class="ct_internal"><pre><b>*** CT 2025-01-15 22:46:17.344 *** Common Test Logger started</b></pre></div> | ||
<pre> | ||
VERBOSITY LEVELS: | ||
general level 100 | ||
default 100 | ||
|
||
</pre> | ||
<div class="ct_internal"><pre><b>*** CT 2025-01-15 22:46:17.348 *** Test Specification file(s)</b> | ||
/buildroot/otp/erts/make_test_dir/system_test/system.spec | ||
</pre></div> | ||
<pre></pre> | ||
<div class="ct_internal"><pre><b>*** CT 2025-01-15 22:46:17.630 *** TEST INFO</b> | ||
1 test(s), 109 case(s) in 11 suite(s) | ||
</pre></div> | ||
<pre></pre> | ||
<div class="ct_internal"><pre><b>*** CT 2025-01-15 22:46:17.630 *** TEST INFO</b> | ||
Timetrap time multiplier = 1 | ||
Timetrap scaling enabled = false | ||
</pre></div> | ||
<pre></pre> | ||
<div class="ct_internal"><pre><b>*** CT 2025-01-15 22:50:20.286 *** Common Test Logger finished</b></pre></div> | ||
<pre> | ||
</pre> | ||
<br /><br /> | ||
<center> | ||
<div class="copyright">Copyright © 2025 <a href="http://www.erlang.org">Open Telecom Platform</a><br /> | ||
Updated: <!--date-->Wed Jan 15 2025 22:50:20<!--/date--><br /> | ||
</div> | ||
</center> | ||
</body> | ||
</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,137 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
<!-- autogenerated by 'ct_logs' --> | ||
<head> | ||
<title>Test Results Wed Jan 15 2025 22:46:17</title> | ||
<meta http-equiv="cache-control" content="no-cache"></meta> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"></meta> | ||
<link rel="stylesheet" href="ct_default.css" type="text/css"></link> | ||
<script type="text/javascript" src="jquery-latest.js"></script> | ||
<script type="text/javascript" src="jquery.tablesorter.min.js"></script> | ||
<script type="text/javascript"> | ||
// Parser for date format, e.g: Wed Jul 4 2012 11:24:15 | ||
var monthNames = {}; | ||
monthNames["Jan"] = "01"; monthNames["Feb"] = "02"; | ||
monthNames["Mar"] = "03"; monthNames["Apr"] = "04"; | ||
monthNames["May"] = "05"; monthNames["Jun"] = "06"; | ||
monthNames["Jul"] = "07"; monthNames["Aug"] = "08"; | ||
monthNames["Sep"] = "09"; monthNames["Oct"] = "10"; | ||
monthNames["Nov"] = "11"; monthNames["Dec"] = "12"; | ||
$.tablesorter.addParser({ | ||
id: 'CTDateSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 2) return 999999999; | ||
else { | ||
var date = s.match(/(\w{3})\s(\w{3})\s(\d{2})\s(\d{4})\s(\d{2}):(\d{2}):(\d{2})/); | ||
var y = date[4]; var mo = monthNames[date[2]]; var d = String(date[3]); | ||
var h = String(date[5]); var mi = String(date[6]); var sec = String(date[7]); | ||
return (parseInt('' + y + mo + d + h + mi + sec)); }}, | ||
type: 'numeric' }); | ||
// Parser for general text format | ||
$.tablesorter.addParser({ | ||
id: 'CTTextSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 1) return 'zzzzzzzz'; | ||
else if (s == "?") return 'zzzzzzz'; | ||
else if (s == "-") return 'zzzzzz'; | ||
else if (s == "FAILED") return 'A'; | ||
else if (s == "SKIPPED") return 'B'; | ||
else if (s == "OK") return 'C'; | ||
else return '' + s; }, | ||
type: 'text' }); | ||
// Parser for numerical values | ||
$.tablesorter.addParser({ | ||
id: 'CTValSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 1) return '-2'; | ||
else if (s == "?") return '-1'; | ||
else if ((s.search(/(\d{1,})\s/)) >= 0) { | ||
var num = s.match(/(\d{1,})\s/); | ||
return (parseInt('' + num[1])); } | ||
else if ((s.search(/(\d{1,})\.(\d{3})s/)) >= 0) { | ||
var num = s.match(/(\d{1,})\.(\d{3})/); | ||
if (num[1] == "0") return (parseInt('' + num[2])); | ||
else return (parseInt('' + num[1] + num[2])); } | ||
else return '' + s; }, | ||
type: 'numeric' }); | ||
$(document).ready(function() { | ||
$("#SortableTable").tablesorter({ | ||
headers: { | ||
0: { sorter: 'CTTextSorter' }, | ||
1: { sorter: 'CTValSorter' }, | ||
2: { sorter: 'CTValSorter' }, | ||
3: { sorter: 'CTValSorter' }, | ||
4: { sorter: 'CTValSorter' } | ||
} | ||
}); | ||
$("#SortableTable").trigger("update"); | ||
$("#SortableTable").trigger("appendCache"); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<center> | ||
<h1>Test Results</h1> | ||
</center> | ||
<center> | ||
<h3>Wed Jan 15 2025 22:46:17</h3> | ||
</center> | ||
<br /> | ||
|
||
<center> | ||
<br /><div id="button_holder" class="btn"> | ||
<a href="ctlog.html">COMMON TEST FRAMEWORK LOG</a> | ||
</div><br> | ||
<br /><br /><br /> | ||
<table id="SortableTable"> | ||
<thead> | ||
<tr> | ||
<th><b>Test Name</b></th> | ||
<th>Ok</th> | ||
<th>Failed</th> | ||
<th>Skipped<br />(User/Auto)</th> | ||
<th>Missing<br />Suites</th> | ||
<th>Elapsed<br />Time</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="even"> | ||
<td><a href="make_test_dir.system_test.logs/run.2025-01-15_22.46.17/suite.log.html">make_test_dir.system_test</a></td> | ||
<td align=right>107</td> | ||
<td align=right>0</td> | ||
<td align=right>2 (2/0)</td> | ||
<td align=right>0</td> | ||
<td align=right>241.341s</td> | ||
</tr> | ||
</tbody> | ||
<tfoot> | ||
<tr class="odd"> | ||
<td><b>Total</b></td> | ||
<td align=right><b>107</b></td> | ||
<td align=right><b>0</b></td> | ||
<td align=right>2 (2/0)</td> | ||
<td align=right><b>0</b></td> | ||
<td align=right><b>241.341s</b></td> | ||
</tr> | ||
</tfoot> | ||
</table> | ||
<br /><hr /><p> | ||
<a href="../all_runs.html">Test run history | ||
</a> | <a href="../index.html">Top level test index | ||
</a> | ||
</p> | ||
</center> | ||
<center> | ||
<div class="copyright">Copyright © 2025 <a href="http://www.erlang.org">Open Telecom Platform</a><br /> | ||
Updated: <!--date-->Wed Jan 15 2025 22:50:20<!--/date--><br /> | ||
</div> | ||
</center> | ||
</body> | ||
</html> |
File renamed without changes.
File renamed without changes.
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 @@ | ||
/buildroot/otp/erts/make_test_dir/ct_logs/[email protected]_22.46.17/make_test_dir.system_test.logs/run.2025-01-15_22.46.17 |
13 changes: 13 additions & 0 deletions
13
prs/9299/ct_logs/[email protected]_22.46.17/last_test.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,13 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> | ||
<!-- autogenerated by 'test_server_ctrl'. --> | ||
<html> | ||
<head> | ||
<title>make_test_dir.system_test.logs</title> | ||
<meta http-equiv="cache-control" content="no-cache"></meta> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"></meta> | ||
</head> | ||
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red"> | ||
<h1>Last test</h1> | ||
<a href="make_test_dir.system_test.logs/run.2025-01-15_22.46.17/suite.log.html">make_test_dir.system_test.logs</a> | ||
</body> | ||
</html> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 13 additions & 0 deletions
13
[email protected]_22.46.17/make_test_dir.system_test.logs/last_link.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,13 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> | ||
<!-- autogenerated by 'test_server_ctrl'. --> | ||
<html> | ||
<head> | ||
<title>make_test_dir.system_test.logs</title> | ||
<meta http-equiv="cache-control" content="no-cache"></meta> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"></meta> | ||
</head> | ||
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red"> | ||
<h1>Last test</h1> | ||
<a href="run.2025-01-15_22.46.17/suite.log.html">make_test_dir.system_test.logs</a> | ||
</body> | ||
</html> |
1 change: 1 addition & 0 deletions
1
[email protected]_22.46.17/make_test_dir.system_test.logs/last_name
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 @@ | ||
/buildroot/otp/erts/make_test_dir/ct_logs/[email protected]_22.46.17/make_test_dir.system_test.logs/run.2025-01-15_22.46.17 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.