Index: benchmark/rmit.py
===================================================================
--- benchmark/rmit.py	(revision 2c7eee0158db97464d1d3b620031d72e9b57e264)
+++ benchmark/rmit.py	(revision eeb50239e4a8b96e536a3593aa8655e49d67a93e)
@@ -10,4 +10,5 @@
 
 import argparse
+import datetime
 import itertools
 import os
@@ -101,4 +102,16 @@
 	return nopts
 
+def actions_eta(actions):
+	time = 0
+	for a in actions:
+		i = 0
+		while i < len(a):
+			if a[i] == '-d':
+				i += 1
+				if i != len(a):
+					time += int(a[i])
+			i += 1
+	return time
+
 if __name__ == "__main__":
 	# ================================================================================
@@ -160,7 +173,11 @@
 	# ================================================================================
 	# Prepare to run
+	print(actions)
+
+	# find expected time
+	time = actions_eta(actions)
+	print("Running {} trials{}".format(len(actions), "" if time == 0 else " (expecting to take {}".format(str(datetime.timedelta(seconds=int(time)))) ))
+
 	random.shuffle(actions)
-
-	print("Running {} trials".format(len(actions)))
 	result = []
 
