I am trying to run PHPUnit unit tests via HHVM on a virtual Ubuntu 12.04 (64-bit Server) install. The tests usually run using a phpunit.xml file located in my tests directory, which includes a bootstrap file to handle autoloading, and the tests run fine on an ordinary php install. However, I keep getting:
HipHop Fatal error: File not found: File/Iterator/Autoload.php in /usr/share/php/PHPUnit/Autoload.php on line 64
When running:
hhvm -f /usr/bin/phpunit /path/to/my/testsDirectory/SomeTest.php
And I haven't been able to figure out how to run phpunit under hhvm using a bootstrap or config file... Any help would be appreciated.