Peter Kropf <[EMAIL PROTECTED]> wrote: > I just tried building a simple hello world application on a FreeBSD > 6.0 system and it worked! I was wondering, is there a set of unit > tests that I can use to perform a bit more serious verification of > FreeBSD support? I see that there's a buildtest directory.
Alas, there are no unittests at the moment. I'd really like them but I don't have much time at the moment (contributions are welcome). "buildtests" contains some tests, but they are nowhere as comprehensive as they should be. > Unfortunately when I use runtests.py, I see lots of syntax errors > like: > > > a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'), > os.path.join(HOMEPATH,'support\\useUnicode.py'), 'test9.py'], > > ^ > SyntaxError: invalid syntax > disttest9/test9: not found Isn't just the backslash vs forward slash problem? Does it work if you remove it altogether, eg, os.path.join(HOMEPAGE, 'support', '_mountzlib.py') ? > I admit that I haven't dug too far into the tests to see what's going > on. I wanted to check that I'm heading in the right direction before > going to far. Any insight that you can provide would be appreciated... It'd be very helpful if you tried the tests under FreeBSD to check if they work. Giovanni Bajo _______________________________________________ PyInstaller mailing list [email protected] http://lists.hpcf.upr.edu/mailman/listinfo/pyinstaller
