// // Copyright 2017 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // PrintSystemInfoTest.cpp: // prints the information gathered about the system so that it appears in the test logs #include <gtest/gtest.h> #include <iostream> #include "common/platform.h" #include "common/system_utils.h" #include "gpu_info_util/SystemInfo.h" usingnamespaceangle; namespace { #if defined(ANGLE_PLATFORM_WINDOWS) || defined(ANGLE_PLATFORM_LINUX) || \ defined(ANGLE_PLATFORM_APPLE) #define SYSTEM_INFO_IMPLEMENTED #endif // Prints the information gathered about the system TEST(PrintSystemInfoTest, Print) { … } TEST(PrintSystemInfoTest, GetSystemInfoNoCrashOnInvalidDisplay) { … } } // anonymous namespace