blob: 5c834125a68135068edbc6cd121f0012fe6737f7 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/ui/lib/escher/test/gtest_vulkan.h"
#include <vulkan/vulkan.hpp>
#include "src/ui/lib/escher/test/gtest_vulkan_internal.h"
namespace testing {
namespace internal {
namespace escher {
std::string PrependDisabledIfNecessary(const std::string& test_case) {
if (::escher::VulkanIsSupported())
return test_case;
return "DISABLED_" + test_case;
}
} // namespace escher
} // namespace internal
} // namespace testing