about summary refs log tree commit diff
path: root/sysdeps/x86_64/tst-shstk-legacy-1e-static.sh
Commit message (Collapse)AuthorAgeFilesLines
* x86/cet: fix shadow stack test scriptsMichael Jeanson2024-02-121-1/+1
| | | | | | | | | | | | | Some shadow stack test scripts use the '==' operator with the 'test' command to validate exit codes resulting in the following error: sysdeps/x86_64/tst-shstk-legacy-1e.sh: 31: test: 139: unexpected operator The '==' operator is invalid for the 'test' command, use '-eq' like the previous call to 'test'. Signed-off-by: Michael Jeanson <mjeanson@efficios.com> Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
* x86: Move CET infrastructure to x86_64Adhemerval Zanella2024-01-091-0/+33
The CET is only supported for x86_64 and there is no plan to add kernel support for i386. Move the Makefile rules and files from the generic x86 folder to x86_64 one. Checked on x86_64-linux-gnu and i686-linux-gnu.