Disable testcase because the ptrace system call is not

supported on ppc64.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15010
This commit is contained in:
Florian Krohm 2015-03-14 09:30:36 +00:00
parent 1a4ab21e56
commit ac9506ad26
2 changed files with 2 additions and 1 deletions

View File

@ -810,6 +810,7 @@ static SyscallTableEntry syscall_table[] = {
GENX_(__NR_getuid, sys_getuid), // 24
// _____(__NR_stime, sys_stime), // 25
// When ptrace is supported, memcheck/tests/linux/getregset should be enabled
// _____(__NR_ptrace, sys_ptrace), // 26
GENX_(__NR_alarm, sys_alarm), // 27
// _____(__NR_oldfstat, sys_oldfstat), // 28

View File

@ -1,4 +1,4 @@
prog: getregset
vgopts: -q
prereq: ../../../tests/os_test linux 2.6.33 && ! ../../../tests/arch_test mips32
prereq: ../../../tests/os_test linux 2.6.33 && ! ../../../tests/arch_test mips32 && ! `../../../tests/arch_test ppc64`