diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-02-25 19:07:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-02-25 19:07:32 +0000 |
commit | 70b4e3ee53373a02bcc9f6530a28537b6f2edeac (patch) | |
tree | 72137fcc8f9e91faf9796f0a540b1f9c9a049898 | |
parent | 8e85c80dd7085ea30105e29d4adc963119b30c09 (diff) |
Vendor import of compiler-rt release_80 branch r354799:vendor/compiler-rt/compiler-rt-release_800-r356365vendor/compiler-rt/compiler-rt-release_80-r356034vendor/compiler-rt/compiler-rt-release_80-r355677vendor/compiler-rt/compiler-rt-release_80-r355313vendor/compiler-rt/compiler-rt-release_80-r354799
Notes
Notes:
svn path=/vendor/compiler-rt/dist-release_80/; revision=344539
svn path=/vendor/compiler-rt/compiler-rt-release_800-r356365/; revision=345338; tag=vendor/compiler-rt/compiler-rt-release_800-r356365
-rw-r--r-- | test/msan/Linux/name_to_handle_at.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/msan/Linux/name_to_handle_at.cc b/test/msan/Linux/name_to_handle_at.cc index 0ff8d982f4f7..a8bc75fa2ae5 100644 --- a/test/msan/Linux/name_to_handle_at.cc +++ b/test/msan/Linux/name_to_handle_at.cc @@ -14,7 +14,7 @@ int main(void) { handle->handle_bytes = MAX_HANDLE_SZ; int mount_id; - int res = name_to_handle_at(AT_FDCWD, "/bin/cat", handle, &mount_id, 0); + int res = name_to_handle_at(AT_FDCWD, "/dev/null", handle, &mount_id, 0); assert(!res); __msan_check_mem_is_initialized(&mount_id, sizeof(mount_id)); __msan_check_mem_is_initialized(&handle->handle_bytes, |