summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/automated/run_continuous.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/automated/run_continuous.py b/tests/automated/run_continuous.py
index ab51f1f6..a304f4d5 100755
--- a/tests/automated/run_continuous.py
+++ b/tests/automated/run_continuous.py
@@ -2,6 +2,7 @@
import os
import sys
import time
+import datetime
import ccdash
GROUP = "Continuous"
@@ -34,7 +35,7 @@ if __name__ == "__main__":
if rc==0:
# Nothing changed
- print "No update, will check again in " + str(INTERVAL) + "s.."
+ print str(datetime.datetime.now()) + ": No update, will check again in " + str(INTERVAL) + "s.."
time.sleep(INTERVAL)
continue