tests/run-tests.py
branchstable
changeset 910 b8ae2e290420
parent 909 5ec26580cbb2
child 912 17e4691cc491
--- a/tests/run-tests.py	Fri Apr 22 14:04:34 2011 -0500
+++ b/tests/run-tests.py	Sun Apr 24 23:33:48 2011 +0200
@@ -651,14 +651,15 @@
     def fail(msg, ret):
         if not options.nodiff:
             print "\nERROR: %s %s" % (testpath, msg)
-        if not ret and options.interactive:
+        if (not ret and options.interactive
+            and os.path.exists(testpath + ".err")):
             print "Accept this change? [n] ",
             answer = sys.stdin.readline().strip()
             if answer.lower() in "y yes".split():
                 if test.endswith(".t"):
-                    rename(test + ".err", test)
+                    rename(testpath + ".err", testpath)
                 else:
-                    rename(test + ".err", test + ".out")
+                    rename(testpath + ".err", testpath + ".out")
                 return
         results['f'].append((test, msg))