[subset] Add more verbose output for subset fuzzer test.
diff --git a/test/fuzzing/run-shape-fuzzer-tests.py b/test/fuzzing/run-shape-fuzzer-tests.py
index bf461ac..088b36a 100755
--- a/test/fuzzing/run-shape-fuzzer-tests.py
+++ b/test/fuzzing/run-shape-fuzzer-tests.py
@@ -28,5 +28,5 @@
 		fails = fails + 1
 
 if fails:
-	print ("%i fuzzer related tests failed." % fails)
+	print ("%i shape fuzzer related tests failed." % fails)
 	sys.exit (1)
diff --git a/test/fuzzing/run-subset-fuzzer-tests.py b/test/fuzzing/run-subset-fuzzer-tests.py
index 9450cb4..229881a 100755
--- a/test/fuzzing/run-subset-fuzzer-tests.py
+++ b/test/fuzzing/run-subset-fuzzer-tests.py
@@ -20,12 +20,16 @@
 fails = 0
 
 parent_path = os.path.join (srcdir, "..", "subset", "data", "fonts")
+print ("running subset fuzzer against fonts in %s" % parent_path)
 for file in os.listdir (parent_path):
-        p = subprocess.Popen ([hb_subset_fuzzer, os.path.join(parent_path, file)])
+        path = os.path.join(parent_path, file)
+        print ("running subset fuzzer against %s" % path)
+        p = subprocess.Popen ([hb_subset_fuzzer, path])
 
         if p.wait () != 0:
+                print ("failed for %s" % path)
                 fails = fails + 1
 
 if fails:
-        print ("%i fuzzer related tests failed." % fails)
+        print ("%i subset fuzzer related tests failed." % fails)
         sys.exit (1)