summaryrefslogtreecommitdiff
path: root/test/scudo
diff options
context:
space:
mode:
authorSagar Thakur <sagar.thakur@imgtec.com>2017-06-19 11:28:59 +0000
committerSagar Thakur <sagar.thakur@imgtec.com>2017-06-19 11:28:59 +0000
commit80ed4944ba672f0f7a2143f149b59e833b94d2f6 (patch)
tree063a250aa4b0d15732d04d81e1fdf71b67a50916 /test/scudo
parent366176ff1bf74e8fe330cdc5b712845b94650078 (diff)
[scudo] Enabling MIPS support for Scudo
Adding MIPS 32-bit and 64-bit support for Scudo. Reviewed by cryptoad, sdardis. Differential: D31803 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@305682 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/scudo')
-rw-r--r--test/scudo/random_shuffle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scudo/random_shuffle.cpp b/test/scudo/random_shuffle.cpp
index 41e67ded6..05a432615 100644
--- a/test/scudo/random_shuffle.cpp
+++ b/test/scudo/random_shuffle.cpp
@@ -7,7 +7,7 @@
// RUN: %run %t 10000 > %T/random_shuffle_tmp_dir/out2
// RUN: not diff %T/random_shuffle_tmp_dir/out?
// RUN: rm -rf %T/random_shuffle_tmp_dir
-// UNSUPPORTED: i386-linux,i686-linux,arm-linux,armhf-linux,aarch64-linux
+// UNSUPPORTED: i386-linux,i686-linux,arm-linux,armhf-linux,aarch64-linux,mips-linux,mipsel-linux,mips64-linux,mips64el-linux
// Tests that the allocator shuffles the chunks before returning to the user.