File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,8 @@ call :run_tests "%API_TEST_EXE_PATH% --mode=gl --non_separable_progs --gtest_fil
87
87
call :run_tests " %API_TEST_EXE_PATH% --mode=vk" " Core GPU Tests VK"
88
88
call :run_tests " %API_TEST_EXE_PATH% --mode=vk --shader_compiler=dxc --gtest_filter=-TextureCreation*" " Core GPU Tests VK DXC"
89
89
90
+ call :run_tests " %API_TEST_EXE_PATH% --mode=wgpu" " Core GPU Tests WebGPU"
91
+
90
92
91
93
rem Tools GPU tests
92
94
@@ -100,6 +102,7 @@ call :run_tests "%TOOLS_GPU_TEST_EXE_PATH% --mode=d3d12_sw" "Tools GPU Tests D3D
100
102
call :run_tests " %TOOLS_GPU_TEST_EXE_PATH% --mode=gl" " Tools GPU Tests GL"
101
103
call :run_tests " %TOOLS_GPU_TEST_EXE_PATH% --mode=gl --non_separable_progs" " Tools GPU Tests GL Non-sep progs"
102
104
call :run_tests " %TOOLS_GPU_TEST_EXE_PATH% --mode=vk" " Tools GPU Tests VK"
105
+ call :run_tests " %TOOLS_GPU_TEST_EXE_PATH% --mode=wgpu" " Tools GPU Tests WebGPU"
103
106
104
107
105
108
cd " %CURR_DIR% "
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ if "%num_args%" LSS "3" (
21
21
echo ADDITIONAL_TEST_APPS_D3D12 - Additional test applications to run in D3D12 mode
22
22
echo ADDITIONAL_TEST_APPS_GL - Additional test applications to run in GL mode
23
23
echo ADDITIONAL_TEST_APPS_VK - Additional test applications to run in Vk mode
24
+ echo ADDITIONAL_TEST_APPS_WGPU - Additional test applications to run in WebGPU mode
24
25
echo .
25
26
echo Example:
26
27
echo test_samples.bat c:\Projects\DiligentEngine\build\Win64 Debug c:\Projects\DiligentTestData\GoldenImages compare
@@ -76,6 +77,9 @@ call :run_tests "--mode gl --non_separable_progs 1"
76
77
set ADDITIONAL_TEST_APPS = %ADDITIONAL_TEST_APPS_VK%
77
78
call :run_tests " --mode vk"
78
79
80
+ set ADDITIONAL_TEST_APPS = %ADDITIONAL_TEST_APPS_WGPU%
81
+ call :run_tests " --mode wgpu"
82
+
79
83
cd " %CURR_DIR% "
80
84
81
85
echo .
You can’t perform that action at this time.
0 commit comments