Update obsolete benchmark test
[lttng-ust.git] / tests / benchmark / average
diff --git a/tests/benchmark/average b/tests/benchmark/average
deleted file mode 100755 (executable)
index bda898c..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python
-
-import sys
-
-def main():
-       total = 0.0
-       n = 0.0
-       while 1:
-               line = sys.stdin.readline()
-               if not line:
-                       break
-
-               val = float(line)
-               n = n+1.0
-               total = total+val
-
-       print total/n
-main()
This page took 0.024367 seconds and 4 git commands to generate.