Index: benchmark/rmit.py
===================================================================
--- benchmark/rmit.py	(revision f46b26b849ddeae891ade3a4951e6f142a2113c7)
+++ benchmark/rmit.py	(revision efc8f3e4a00796b719a6392b92ede051700c015f)
@@ -232,4 +232,9 @@
 	# ================================================================================
 	# Now that we know what to run, print it.
+	# 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)))) ))
+
+	# dry run if options ask for it
 	if options.list:
 		for a in actions:
@@ -240,8 +245,4 @@
 	# ================================================================================
 	# Prepare to run
-
-	# 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)
