summaryrefslogtreecommitdiff
path: root/tests/qualify_personality.sh
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headersDmitry V. Levin2023-04-301-1/+1
| | | | | Headers updated automatically using maint/update_copyright_years.sh script.
* treewide: fix unnecessary $ on arithmetic variablesDmitry V. Levin2023-03-301-1/+1
| | | | This silences shellcheck SC2004.
* Update copyright headersDmitry V. Levin2022-03-261-1/+1
| | | | | Headers updated automatically using maint/update_copyright_years.sh script.
* tests: move current personality designator detection code to init.shDmitry V. Levin2022-01-151-23/+1
| | | | | | | This functionality is going to be used in different tests. * tests/init.sh (print_current_personality_designator): New function. * tests/qualify_personality.sh: Use it.
* Remove traces of riscv64 mpersAndreas Schwab2019-09-271-1/+1
| | | | | | | | * tests/options-syntax.test: Remove riscv64. * tests/qualify_personality.sh: Likewise. * tests/strace-V.test: Likewise. Fixes: v5.3~18 "riscv64: remove mpers support"
* Update copyright headersDmitry V. Levin2019-09-251-1/+1
| | | | | Headers updated automatically using maint/update_copyright_years.sh script.
* riscv: rename to riscv64Dmitry V. Levin2019-09-231-1/+1
| | | | | | | | | | | | | | | The only currently supported RISC-V architecture is the 64-bit RISC-V. As the generic name we use causes confusion [1], rename it to riscv64. [1] https://lists.strace.io/pipermail/strace-devel/2019-August/009057.html * Makefile.am (EXTRA_DIST): Rename linux/riscv to linux/riscv64. * configure.ac: Rename riscv to riscv64, RISCV to RISCV64. * linux/riscv: Rename to linux/riscv64. * riscv.c: Rename RISCV to RISCV64. * tests/options-syntax.test: Rename riscv to riscv64. * tests/qualify_personality.sh: Likewise. * tests/strace-V.test: Likewise.
* 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: add missing copyright headersDmitry V. Levin2018-06-141-1/+26
| | | | | * tests/prctl-spec-inject.test: Add copyright header. * tests/qualify_personality.sh: Likewise.
* tests: add basic checks for personality designation supportEugene Syromyatnikov2018-06-131-0/+69
* tests/qualify_personality.sh: New file. * tests/qualify_personality_empty.in: Likewise. * tests/trace_personality_32.in: Likewise. * tests/trace_personality_64.in: Likewise. * tests/trace_personality_regex_32.in: Likewise. * tests/trace_personality_regex_64.in: Likewise. * tests/trace_personality_regex_x32.in: Likewise. * tests/trace_personality_x32.in: Likewise. * tests/Makefile.am (EXTRA_DIST): Add them. * tests/gen_tests.in (trace_personality_32, trace_personality_64, trace_personality_x32, trace_personality_regex_32, trace_personality_regex_64, trace_personality_regex_x32): New tests.