mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-03 21:21:23 +00:00
This moves the creation of the Instance and Adapter discover to environment creation. It allows programatically filtering test parameterizations based on what is available on the system instead of relying on what is enabled at compile time. Because of an issue with the Vulkan validation layers, the instance and adapters are created twice. Once in environment creation, and once on environment set up. The Vulkan validation layers use static global mutexes which are unsafe when Chromium's test launcher forks the launcher process between environment creation and SetUp. Bug: dawn:396 Change-Id: Id79f0d274331e4ba95f75b2ca4e896ad0f7a31a8 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/21762 Commit-Queue: Austin Eng <enga@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Stephen White <senorblanco@chromium.org>
22 lines
777 B
C++
22 lines
777 B
C++
// Copyright 2017 The Dawn Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "tests/DawnTest.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
InitDawnEnd2EndTestEnvironment(argc, argv);
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|