blob: a2dac2cb5b914a49d6466bb191330d274d0c78ef [file] [log] [blame]
cdwijayarathna3f679782014-07-09 14:00:33 +05301<!DOCTYPE HTML>
2<html>
3<head>
4<meta charset="utf-8">
5<title>Apache Thrift - integration test suite</title>
6<link rel="stylesheet" type="text/css" href="http://cdn.datatables.net/1.10.0/css/jquery.dataTables.css">
7<script type="text/javascript" charset="utf-8" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
8<script type="text/javascript" charset="utf-8" src="http://cdn.datatables.net/1.10.0/js/jquery.dataTables.js"></script>
9<script>
Roger Meiere8bafb62014-08-01 23:39:32 +020010 var test_data;
cdwijayarathna3f679782014-07-09 14:00:33 +053011
12 $(document).ready( function () {
Roger Meiere8bafb62014-08-01 23:39:32 +020013 $.getJSON('results.json', function(testData) {
cdwijayarathna3f679782014-07-09 14:00:33 +053014 testTable = $('#test_results').DataTable( {
Roger Meiere8bafb62014-08-01 23:39:32 +020015 data: testData,
16 "columnDefs": [
17 {
18 "render": function ( data, type, row ) {
19 return data +' ('+ '<a href="'+row[5].Client+'">Client</a>,<a href="'+row[5].Server+'">Server</a>'+')';
20 },
21 "targets": 4
22 }
23 ]
24
cdwijayarathna3f679782014-07-09 14:00:33 +053025 });
26 $('#test_results_filter label input')
27 .focus()
28 .val('failure');
29 });
30 });
cdwijayarathna3f679782014-07-09 14:00:33 +053031</script>
32</head>
33<body>
34<h2>Apache Thrift - integration test suite: Results</h2>
35<table id="test_results" class="display">
36 <thead>
37 <tr>
38 <th>Server</th>
39 <th>Client</th>
40 <th>Protocol</th>
41 <th>Transport</th>
42 <th>Result (log)</th>
43 </tr>
44 </thead>
45</table>
46</body>
47</html>