mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 00:25:27 +00:00
Added note about installing tests dependencies on Mac OS X. Added note about tests failing when required architecture support is disabled in build. (#908)
This commit is contained in:
parent
961c916a1c
commit
4ad770b6c2
|
@ -153,8 +153,14 @@ of corresponding languages.
|
||||||
|
|
||||||
[8] Unit tests
|
[8] Unit tests
|
||||||
|
|
||||||
|
Mac OS X users will also need the GNU version of binutils (for gobjcopy).
|
||||||
|
It can be easily installed with Homebrew: `brew install binutils`.
|
||||||
|
|
||||||
Automated unit tests use the cmocka unit testing framework (https://cmocka.org/).
|
Automated unit tests use the cmocka unit testing framework (https://cmocka.org/).
|
||||||
It can be installed in most Linux distros using the package manager, e.g.
|
It can be installed in most Linux distros using the package manager, e.g.
|
||||||
`sudo yum install libcmocka libcmocka-devel`, or you can easily build and install it from source.
|
`sudo yum install libcmocka libcmocka-devel`.
|
||||||
|
On Mac OS X with Homebrew: `brew install cmocka`.
|
||||||
|
You can also easily build and install it from source.
|
||||||
|
|
||||||
You can run the tests by running `make test` in the project directory.
|
You can run the tests by running `make test` in the project directory. If you don't
|
||||||
|
build some architecture support then the corresponding tests will fail when run.
|
||||||
|
|
Loading…
Reference in a new issue