diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2017-04-27 14:21:09 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2017-04-27 14:21:09 +0000 |
commit | dc18f517cd2998fd3fba15207b944d065a6e0790 (patch) | |
tree | 3aeda8c1b0e3d93770c952be2584b1a090b8e877 | |
parent | cb00640c05a7e99214ed05f92ec6e378f0773e14 (diff) | |
download | bcm5719-llvm-dc18f517cd2998fd3fba15207b944d065a6e0790.tar.gz bcm5719-llvm-dc18f517cd2998fd3fba15207b944d065a6e0790.zip |
Also match the output on 32 bit systems.
llvm-svn: 301543
-rw-r--r-- | compiler-rt/test/asan/TestCases/Posix/coverage-fork-direct.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/asan/TestCases/Posix/coverage-fork-direct.cc b/compiler-rt/test/asan/TestCases/Posix/coverage-fork-direct.cc index 27c3e436a5b..dba0cb02238 100644 --- a/compiler-rt/test/asan/TestCases/Posix/coverage-fork-direct.cc +++ b/compiler-rt/test/asan/TestCases/Posix/coverage-fork-direct.cc @@ -36,7 +36,7 @@ int main(int argc, char **argv) { // CHECK-DAG: Child PID: [[ChildPID:[0-9]+]] // CHECK-DAG: Parent PID: [[ParentPID:[0-9]+]] -// CHECK-DAG: read 3 64-bit PCs from {{.*}}.[[ParentPID]].sancov +// CHECK-DAG: read 3 {{64|32}}-bit PCs from {{.*}}.[[ParentPID]].sancov // FIXME: this is missing -// XCHECK-DAG: read 1 64-bit PCs from {{.*}}.[[ChildPID]].sancov +// XCHECK-DAG: read 1 {{64|32}}-bit PCs from {{.*}}.[[ChildPID]].sancov |