|
From: Will S. <wil...@vn...> - 2015-05-05 22:27:06
|
Update the pth_create_chain vgtest prereq to handle the ppc64le architecture in the same way as ppc64 (BE). Signed-off-by: Will Schmidt <wil...@vn...> --- drd/tests/pth_create_chain.vgtest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drd/tests/pth_create_chain.vgtest b/drd/tests/pth_create_chain.vgtest index b8c2422..5fc5ced 100644 --- a/drd/tests/pth_create_chain.vgtest +++ b/drd/tests/pth_create_chain.vgtest @@ -1,2 +1,2 @@ -prereq: ./supported_libpthread && [ `uname -m` != ppc ] && [ `uname -m` != ppc64 ] +prereq: ./supported_libpthread && [ `uname -m` != ppc ] && [ `uname -m` != ppc64 ] && [ `uname -m` != ppc64le ] prog: pth_create_chain 100 |