mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-07 16:42:34 +00:00
8cc2bddb32
This change addresses the corner case bug in the test infrastructure where a test file times out *outside* of any running test method. In those cases, the issue was charged to the file, not to a test method within the file. When that file is re-run successfully, none of the test-method-level successes would clear the file-level issue. This change fixes that: for all test files that are getting rerun (whether by being marked flaky or via the --rerun-all-issues flag), file-level test issues are searched for in each of those files. Each file-level issue found in the rerun file list then gets cleared. A test of this feature is added to issue_verification, using the technique there of moving the *.py.park file to *.py to do an end-to-end validation. This change also adds a .gitignore entry for pyenv project-level files and fixes up a few minor pep8 formatting violations in files I touched. Fixes: llvm.org/pr27423 llvm-svn: 282990
60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
#==============================================================================#
|
|
# The file specifies intentionally untracked files that git should ignore.
|
|
# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
|
|
#
|
|
# This file is intentionally different from the output of `git svn show-ignore`,
|
|
# as most of those are useless.
|
|
#==============================================================================#
|
|
|
|
#==============================================================================#
|
|
# File extensions to be ignored anywhere in the tree.
|
|
#==============================================================================#
|
|
# Temp files created by most text editors.
|
|
*~
|
|
# Merge files created by git.
|
|
*.orig
|
|
# Byte compiled python modules.
|
|
*.pyc
|
|
*.pyproj
|
|
# pyenv settings
|
|
.python-version
|
|
*.sln
|
|
*.suo
|
|
# vim swap files
|
|
.*.swp
|
|
.sw?
|
|
# OS X specific files.
|
|
.DS_store
|
|
DerivedData/
|
|
|
|
# Remote build configuration files.
|
|
.remote-build.conf
|
|
|
|
build/
|
|
pyproj/
|
|
llvm-build/
|
|
ninja/
|
|
*xcuserdata
|
|
test/20*
|
|
__pycache__/
|
|
*.lock
|
|
*.so
|
|
|
|
clang-module-cache
|
|
|
|
# Skip ctags-style tags files
|
|
tags
|
|
|
|
# We should ignore Xcode-style embedding of llvm/ at lldb root dir.
|
|
# Do not add trailing '/'s, they skip symlinks.
|
|
/llvm
|
|
/DerivedData
|
|
|
|
# Ignore test trace directories.
|
|
20??-??-??-??_??_??/
|
|
|
|
# Ignore crashlog support files.
|
|
crashinfo.lock
|
|
crashinfo.so
|
|
|