Revert "[GVN] MemorySSA for GVN: add optional `AllowMemorySSA`"
[llvm-project.git] / libc / test / src / sys / utsname / uname_test.cpp
blob6452021bd6c3580fe4dfa7cc041f3b47883b924a
1 //===-- Unittests for uname -----------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "src/__support/CPP/string_view.h"
10 #include "src/__support/macros/properties/architectures.h"
11 #include "src/sys/utsname/uname.h"
12 #include "test/UnitTest/ErrnoSetterMatcher.h"
13 #include "test/UnitTest/Test.h"
15 #include <sys/utsname.h>
17 TEST(LlvmLibcUnameTest, GetMachineName) {
18 struct utsname names;
19 ASSERT_GE(LIBC_NAMESPACE::uname(&names), 0);
20 #ifdef LIBC_TARGET_ARCH_IS_X86_64
21 ASSERT_STREQ(names.machine, "x86_64");
22 #elif defined(LIBC_TARGET_ARCH_IS_AARCH64)
23 ASSERT_STREQ(names.machine, "aarch64");
24 #endif