Mention test session capture log file names
authorJeremy Stanley <fungi@yuggoth.org>
Sun, 11 Oct 2015 04:29:32 +0000 (04:29 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Sun, 11 Oct 2015 04:29:32 +0000 (04:29 +0000)
When writing functional test session capture logs, mention the file
names for ease of reference.

bin/test

index 1f5f91f..9a5e9d0 100755 (executable)
--- a/bin/test
+++ b/bin/test
@@ -173,7 +173,9 @@ for conversant in range(len(captures)):
     except:
         pass
     lusers[conversant].close()
-    log = open("capture_%s.log" % conversant, "w")
+    logfile = "capture_%s.log" % conversant
+    print("Recording session %s as %s." % (conversant, logfile))
+    log = open(logfile, "w")
     log.write(captures[conversant])
     log.close()
 print("\nRan %s tests in %.3f seconds." % (len(dialogue), duration))