On Mon, Sep 5, 2011 at 5:34 AM, David Shan <[email protected]> wrote: > any more suggestion?
It would be interesting to gather more information about your server (OS type, python version, etc). The problem happens when the graphing frontend tries to allocate a temporary directory with the API tempfile.gettempdir(), so you should be able to see the same error message if you do the same. 1) Invoke the python interpreter: # python 2) Import tempfile and then try to call the API gettempdir() >>> import tempfile >>> tempfile.gettempdir() This should throw exactly the same problem: >>> [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', >>> '/usr/tmp', '/'] Which is indeed very weird, we've never seen anything like that, which makes me wonder if there's a bug on this particular python API for this particular version of python on your particular OS. Bottom line: I suspect of a python bug on your specific OS version/combination. Let me know the results of this experiment, and OS info, please. -- Lucas _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
