Index: /trunk/src/VBox/ValidationKit/tests/autostart/tdAutostart1.py
===================================================================
--- /trunk/src/VBox/ValidationKit/tests/autostart/tdAutostart1.py	(revision 84322)
+++ /trunk/src/VBox/ValidationKit/tests/autostart/tdAutostart1.py	(revision 84323)
@@ -190,5 +190,6 @@
                            if oRegExp.match(os.path.basename(s))
                            and os.path.exists(sTestBuildDir + '/' + s));
-                asFiles = sorted(asFiles, reverse = True, key = lambda s: os.path.getmtime(os.path.join(sTestBuildDir, s)));
+                asFiles = sorted(asFiles, reverse = True, 
+                                 key = lambda s, sTstBuildDir = sTestBuildDir: os.path.getmtime(os.path.join(sTstBuildDir, s)));
                 if asFiles:
                     return sTestBuildDir + '/' + asFiles[0];
@@ -196,5 +197,5 @@
                 pass;
 
-        reporter.error('Failed to find a file matching "%s" in %s.' % (sRegExp, sTestBuildDir));
+        reporter.error('Failed to find a file matching "%s" in %s.' % (sRegExp, ','.join(asTestBuildDirs)));
         return None;
 
