summaryrefslogtreecommitdiff
path: root/extra
Commit message (Collapse)AuthorAgeFilesLines
* Remove suppression for test_ok under TSanAzat Khuzhin2023-02-121-2/+0
| | | | There is no such tests yet.
* Suppress data race for test_ok variableAzat Khuzhin2023-02-121-0/+2
|
* Suppress data race for event_debug_created_threadable_ctx_ variableAzat Khuzhin2023-02-121-0/+1
|
* Fix script for updating contributorsAzat Khuzhin2022-11-201-3/+3
|
* Add a script to generate changelogAzat Khuzhin2022-11-201-0/+43
|
* Add a script to add new contributorsAzat Khuzhin2022-11-201-0/+24
|
* Add LSAN suppressions (for OpenSSL temporary quirk)Azat Khuzhin2020-06-251-0/+3
|
* Add TSAN suppressionsAzat Khuzhin2020-06-251-0/+2
|
* abi-check: abi-monitor 1.10 does not support -make -j8 (1.12 supports though)Azat Khuzhin2020-05-061-2/+4
| | | | | An error for 1.10 on ci: https://github.com/azat/libevent/runs/647860649?check_suite_focus=true#step:4:219
* Add API/ABI checker (using LVC)yuangongji2020-05-053-0/+98
v2 (by azat): - drop package installations - use local .abi-check over $HOME/abi-check for build dir - drop regex check, simply use default values (too complex otherwise) - use sub-shell to avoid cd back - add missing quotes - make the style uniq across the whole file (no tabs for indent, copy-paste?) - drop `set -x`, use `bash -x abi-check.sh` over - drop EVENT_ABI_CHECK - use /usr/bin/env bash as shebang - use `find | xargs` over `cp $(grep -v)` - adjust markdown syntax in abi-check/README.md - adjust link to the publicly available documentation v3 (by azat): - docker image - git check-ignore - make -j8 - allow to change defaults Refs: #887