2023-07-13 17:27:40 +08:00
|
|
|
# venv
|
|
|
|
.venv/
|
2023-07-17 03:51:41 +08:00
|
|
|
|
|
|
|
# ignore binaries that are potentially tainted by the host system
|
|
|
|
# E.g. the binary could reference source code on the host system
|
|
|
|
# this is a problem because inside docker we won't have access to
|
|
|
|
# the host system
|
|
|
|
tests/**/binaries/*.o
|
|
|
|
tests/**/binaries/*.out
|
|
|
|
tests/**/binaries/gosample.x*
|
|
|
|
tests/**/binaries/div_zero_binary/core
|
|
|
|
tests/**/binaries/div_zero_binary/binary
|
|
|
|
!tests/**/binaries/*.go
|
|
|
|
|
|
|
|
# ignore QEMU test images (could also be tainted)
|
|
|
|
tests/qemu-tests/images
|