blob: 12caf37ce96f7566d575211219ed13002dfa77ed [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 "gtest/gtest.h"
#if defined(MAGMA_USE_SHIM)
#include "vulkan_shim.h"
#endif
int main(int argc, char** argv)
{
#if defined(MAGMA_USE_SHIM)
VulkanShimInit();
#endif
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}