nuxeo / FunkLoad

Functional and load testing framework for web applications, written in Python
http://funkload.nuxeo.org/
GNU General Public License v2.0
381 stars 83 forks source link

workaround for https://github.com/pypa/virtualenv/issues/330 #70

Closed tarekziade closed 12 years ago

tarekziade commented 12 years ago

If you run Funkload in distributed mode on a 64bits centos-like distribution, Virtualenv does a symlib from lib->lib64 in the virtualenv root.

The problem is that it uses '.' as the root directory, and when you call this command through ssh, it's replaced by the current working directory of the original host.

IOW you get a broken symlink. The immediate impact is that the virtualenv will not see packages that were installed locally. For instance a custom funkload snapshot.

This commit is a workaround until virtualenv is fixed. It just replaces the lib64 broken symlink by a new working one

tarekziade commented 12 years ago

Anything else I should do on this one ?