blob: ba01cea658c4633fed2fc3cf4f06bd42ebf27c79 [file] [log] [blame]
// Copyright 2017 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();
}