summaryrefslogtreecommitdiff
path: root/tests/fadvise.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headersDmitry V. Levin2021-02-161-1/+1
| | | | | Headers updated automatically using maint/update_copyright_years.sh script.
* Change my email addressDmitry V. Levin2020-12-311-1/+1
|
* Fix preprocessor indentationDmitry V. Levin2018-12-301-1/+1
| | | | | | | | | Indent the C preprocessor directives to reflect their nesting using the following script: $ cppi -l $(git grep -El '^[[:space:]]*#[[:space:]]*(if|ifdef|ifndef|elif|else|endif|define|pragma)[[:space:]]' |grep -v '\.sh$') |while read f; do cppi < "$f" > "$f".cppi; mv "$f".cppi "$f" done
* Update copyright headersDmitry V. Levin2018-12-241-0/+1
|
* tests: change the license to GPL-2.0-or-laterDmitry V. Levin2018-12-101-21/+1
| | | | | strace test suite is now provided under the terms of the GNU General Public License version 2 or later, see tests/COPYING for more details.
* tests: fix name spellingEugene Syromyatnikov2016-10-301-1/+1
|
* tests: move LL_PAIR and LL_VAL_TO_PAIR macros to tests.hEugene Syromyatnikov2016-10-261-7/+0
| | | | | * tests/fadvise.h (LL_PAIR, LL_VAL_TO_PAIR): Move ... * tests/tests.h: ... here.
* tests: check decoding of fadvise64 and fadvise64_64 syscallsEugene Syromyatnikov2016-09-281-0/+64
* tests/fadvise.h: New file. * tests/fadvise64.c: Likewise. * tests/fadvise64_64.c: Likewise. * tests/fadvise64.test: New test. * tests/fadvise64_64.test: Likewise. * tests/.gitignore: Add fadvise64 and fadvise64_64. * tests/Makefile.am (check_PROGRAMS): Likewise. (DECODER_TESTS): Add fadvise64.test, fadvise64_64.test. (EXTRA_DIST): Add fadvise.h.