@@ -111,7 +111,7 @@ fn vulkan_13_generates_expected_files() {
111111 . assert ( )
112112 . success ( ) ;
113113
114- assert_c_output_exists ( dir. path ( ) , "vk " ) ;
114+ assert_c_output_exists ( dir. path ( ) , "vulkan " ) ;
115115 try_compile_c ( dir. path ( ) ) ;
116116}
117117
@@ -130,7 +130,7 @@ fn vulkan_13_with_loader_generates_and_compiles() {
130130 . assert ( )
131131 . success ( ) ;
132132
133- assert_c_output_exists ( dir. path ( ) , "vk " ) ;
133+ assert_c_output_exists ( dir. path ( ) , "vulkan " ) ;
134134 try_compile_c ( dir. path ( ) ) ;
135135}
136136
@@ -149,7 +149,7 @@ fn vulkan_13_with_alias_generates_and_compiles() {
149149 . assert ( )
150150 . success ( ) ;
151151
152- assert_c_output_exists ( dir. path ( ) , "vk " ) ;
152+ assert_c_output_exists ( dir. path ( ) , "vulkan " ) ;
153153 try_compile_c ( dir. path ( ) ) ;
154154}
155155
@@ -169,7 +169,7 @@ fn vulkan_13_all_flags_generates_and_compiles() {
169169 . assert ( )
170170 . success ( ) ;
171171
172- assert_c_output_exists ( dir. path ( ) , "vk " ) ;
172+ assert_c_output_exists ( dir. path ( ) , "vulkan " ) ;
173173 try_compile_c ( dir. path ( ) ) ;
174174}
175175
@@ -180,15 +180,15 @@ fn vulkan_latest_version_generates() {
180180 gloam ( )
181181 . args ( [
182182 "--api" ,
183- "vk " ,
183+ "vulkan " ,
184184 "--out-path" ,
185185 dir. path ( ) . to_str ( ) . unwrap ( ) ,
186186 "c" ,
187187 ] )
188188 . assert ( )
189189 . success ( ) ;
190190
191- assert_c_output_exists ( dir. path ( ) , "vk " ) ;
191+ assert_c_output_exists ( dir. path ( ) , "vulkan " ) ;
192192 try_compile_c ( dir. path ( ) ) ;
193193}
194194
@@ -208,7 +208,7 @@ fn vulkan_long_name_normalizes_to_vk_stem() {
208208 . assert ( )
209209 . success ( ) ;
210210
211- assert_c_output_exists ( dir. path ( ) , "vk " ) ;
211+ assert_c_output_exists ( dir. path ( ) , "vulkan " ) ;
212212 try_compile_c ( dir. path ( ) ) ;
213213}
214214
@@ -230,7 +230,7 @@ fn vulkan_header_has_context_and_scope_enum() {
230230 . assert ( )
231231 . success ( ) ;
232232
233- let header = read_header ( dir. path ( ) , "vk " ) ;
233+ let header = read_header ( dir. path ( ) , "vulkan " ) ;
234234
235235 assert ! (
236236 header. contains( "GloamVulkanContext" ) ,
@@ -266,7 +266,7 @@ fn vulkan_header_has_core_commands() {
266266 . assert ( )
267267 . success ( ) ;
268268
269- let header = read_header ( dir. path ( ) , "vk " ) ;
269+ let header = read_header ( dir. path ( ) , "vulkan " ) ;
270270
271271 // Fundamental Vulkan entry points that must always be present.
272272 assert ! (
@@ -303,7 +303,7 @@ fn vulkan_header_has_version_macros() {
303303 . assert ( )
304304 . success ( ) ;
305305
306- let header = read_header ( dir. path ( ) , "vk " ) ;
306+ let header = read_header ( dir. path ( ) , "vulkan " ) ;
307307
308308 assert ! (
309309 header. contains( "VK_VERSION_1_0 1" ) ,
@@ -339,7 +339,7 @@ fn vulkan_10_does_not_have_13_features() {
339339 . assert ( )
340340 . success ( ) ;
341341
342- let header = read_header ( dir. path ( ) , "vk " ) ;
342+ let header = read_header ( dir. path ( ) , "vulkan " ) ;
343343
344344 assert ! (
345345 header. contains( "VK_VERSION_1_0 1" ) ,
@@ -372,7 +372,7 @@ fn vulkan_with_extension_filter_generates() {
372372 . assert ( )
373373 . success ( ) ;
374374
375- let header = read_header ( dir. path ( ) , "vk " ) ;
375+ let header = read_header ( dir. path ( ) , "vulkan " ) ;
376376 assert ! (
377377 header. contains( "KHR_swapchain" ) ,
378378 "VK_KHR_swapchain should be present when explicitly requested"
0 commit comments