2015-08-21 10:04:50 +03:00
|
|
|
.DS_Store
|
|
|
|
*.swp
|
|
|
|
*.d
|
|
|
|
*.o
|
|
|
|
*.a
|
2015-09-22 06:05:38 +03:00
|
|
|
*.dSYM
|
2015-10-22 05:43:14 +03:00
|
|
|
*.so
|
|
|
|
*.so.*
|
2015-12-16 04:59:30 +03:00
|
|
|
*.exe
|
2015-12-17 08:20:57 +03:00
|
|
|
*.dll
|
2016-01-11 20:03:44 +03:00
|
|
|
*.class
|
|
|
|
*.jar
|
2015-08-21 10:04:50 +03:00
|
|
|
|
|
|
|
qemu/config-all-devices.mak
|
|
|
|
|
2017-01-21 17:17:36 +03:00
|
|
|
qemu/aarch64-softmmu/
|
|
|
|
qemu/arm-softmmu/
|
|
|
|
qemu/m68k-softmmu/
|
|
|
|
qemu/mips64el-softmmu/
|
|
|
|
qemu/mips64-softmmu/
|
|
|
|
qemu/mipsel-softmmu/
|
|
|
|
qemu/mips-softmmu/
|
|
|
|
qemu/sparc64-softmmu/
|
|
|
|
qemu/sparc-softmmu/
|
|
|
|
qemu/x86_64-softmmu/
|
2015-08-21 10:04:50 +03:00
|
|
|
|
2017-01-20 16:30:50 +03:00
|
|
|
qemu/qapi-types.h
|
|
|
|
qemu/qapi-visit.h
|
2017-01-21 17:17:36 +03:00
|
|
|
qemu/qapi-types.c
|
|
|
|
qemu/qapi-visit.c
|
2015-08-21 10:04:50 +03:00
|
|
|
tags
|
|
|
|
qemu/config-host.ld
|
|
|
|
qemu/config.log
|
|
|
|
qemu/config.status
|
|
|
|
qemu/config-host.h
|
|
|
|
qemu/config-host.h-timestamp
|
|
|
|
qemu/config-host.mak
|
|
|
|
|
|
|
|
libunicorn*.dll
|
|
|
|
libunicorn*.so
|
|
|
|
libunicorn*.dylib
|
|
|
|
|
|
|
|
unicorn.pc
|
|
|
|
|
|
|
|
unicorn.lib
|
|
|
|
unicorn.dll
|
2016-12-27 11:30:07 +03:00
|
|
|
unicorn.exp
|
|
|
|
unicorn.def
|
2015-08-21 10:04:50 +03:00
|
|
|
unicorn_*.lib
|
2015-12-04 14:09:24 +03:00
|
|
|
unicorn_*.exp
|
2015-08-21 10:04:50 +03:00
|
|
|
unicorn_*.dll
|
|
|
|
|
|
|
|
|
|
|
|
*.tgz
|
|
|
|
*.zip
|
|
|
|
*.pyc
|
|
|
|
_*.txt
|
|
|
|
_*.diff
|
|
|
|
tmp/
|
|
|
|
|
|
|
|
bindings/python/build/
|
2016-09-13 00:02:14 +03:00
|
|
|
bindings/python/dist/
|
|
|
|
bindings/python/src/
|
|
|
|
bindings/python/unicorn.egg-info/
|
|
|
|
bindings/python/unicorn/lib/
|
|
|
|
bindings/python/unicorn/include/
|
|
|
|
bindings/python/MANIFEST
|
2015-08-21 10:04:50 +03:00
|
|
|
config.log
|
2015-08-24 17:25:28 +03:00
|
|
|
|
2016-06-16 04:27:47 +03:00
|
|
|
|
2016-01-10 18:56:14 +03:00
|
|
|
|
2015-10-14 11:51:23 +03:00
|
|
|
|
|
|
|
#################
|
|
|
|
## Visual Studio
|
|
|
|
#################
|
|
|
|
|
|
|
|
## Ignore Visual Studio temporary files, build results, and
|
|
|
|
## files generated by popular Visual Studio add-ons.
|
|
|
|
|
|
|
|
# User-specific files
|
2015-12-08 10:21:32 +03:00
|
|
|
*.opensdf
|
|
|
|
*.sdf
|
2015-10-14 11:51:23 +03:00
|
|
|
*.suo
|
|
|
|
*.user
|
|
|
|
*.sln.docstates
|
|
|
|
|
|
|
|
# Build results
|
|
|
|
|
|
|
|
[Dd]ebug/
|
|
|
|
[Rr]elease/
|
|
|
|
x64/
|
2015-12-08 10:21:32 +03:00
|
|
|
Win32/
|
2015-10-14 11:51:23 +03:00
|
|
|
build/
|
|
|
|
[Bb]in/
|
|
|
|
[Oo]bj/
|
|
|
|
packages/
|
Unit testing in CI (#651)
- in appveyor, install clang and cmake in cygwin, enable package upgrades, and build cmocka and enable testing for gcc only
- in `gitignore`, ignore generated cmocka folder
- in travis, use brew in osx to install cmocka, and enable testing for gcc and clang on os x and linux
- in `Makefile`, change to use `uname -s` to determine os type
- make `install-cmocka-linux.sh`, a simple shell script to download and install cmocka on linux
- in `bindings/Makefile`, enable `make -c` to call subdirectory makefiles instead of `cd [dir] && make` and include environment variables for runtime access to generated libraries
- in `samples/Makefile`, change to use `uname -s` to determine os type, remove `clean_bins` from `all` command, and include `Werror` for compile strictness
- in `tests/unit/Makefile`, add `cflags` for compile time access to cmocka headers and library, include execute vars for runtime access to cmocka and unicorn libs
- in `tests/unit/test_tb_x86.c`, comment out assert that would not compile
2016-10-21 19:21:10 +03:00
|
|
|
cmocka/
|