summaryrefslogtreecommitdiff
path: root/tko/machine_test_attribute_graph.cgi
diff options
context:
space:
mode:
authormbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4>2007-09-26 17:24:38 +0000
committermbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4>2007-09-26 17:24:38 +0000
commit7f4619ce94283f000fa0533d243c1eab9eddfb70 (patch)
tree31a58d6b2c2936e747aafaaec9f4fe0b633d5f14 /tko/machine_test_attribute_graph.cgi
parent443e4721a841f35bfbf93f98d2954b5702aa9c56 (diff)
Remove old test junk from machine_test_attribute_graph.cgi
Signed-off-by: Martin J. Bligh <mbligh@google.com> git-svn-id: svn://test.kernel.org/autotest/trunk@693 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'tko/machine_test_attribute_graph.cgi')
-rwxr-xr-xtko/machine_test_attribute_graph.cgi9
1 files changed, 0 insertions, 9 deletions
diff --git a/tko/machine_test_attribute_graph.cgi b/tko/machine_test_attribute_graph.cgi
index 8bbe51ec..69639d4c 100755
--- a/tko/machine_test_attribute_graph.cgi
+++ b/tko/machine_test_attribute_graph.cgi
@@ -38,13 +38,4 @@ def main():
def sort_kernels(kernels):
return sorted(kernels, key = kernel_versions.version_encode)
-
-def draw_graph(title, xlabel, ylabel):
- graph = plotgraph.gnuplot(title, xlabel, ylabel)
- graph.set_xlabels(["2.6.0", "2.6.1", "2.6.2"])
- graph.add_dataset('foo', ["10 0.5", "11 1", "12 2"])
- graph.add_dataset('bar', ["13 0.5", "10 0.2", "9 0.1"])
- graph.plot(cgi_header = True)
-
-
main()