@@ -115,9 +115,7 @@ def test_get_buffer_empty(get_size, get_buffer):
115115 assert buffer == b"\x00 "
116116
117117
118- @pytest .mark .parametrize (
119- "options" , [[], ["-opt=0" ], ["-opt=3" , "-g" ], [b"-opt=0" ], [b"-opt=3" , b"-g" ], ["-opt=3" , b"-g" ]]
120- )
118+ @pytest .mark .parametrize ("options" , [[], ["-opt=0" ], ["-opt=3" , "-g" ]])
121119def test_compile_program_with_minimal_nvvm_ir (minimal_nvvmir , options ): # noqa: F401, F811
122120 with nvvm_program () as prog :
123121 nvvm .add_module_to_program (prog , minimal_nvvmir , len (minimal_nvvmir ), "FileNameHere.ll" )
@@ -137,9 +135,7 @@ def test_compile_program_with_minimal_nvvm_ir(minimal_nvvmir, options): # noqa:
137135 assert ".visible .entry kernel()" in buffer .decode ()
138136
139137
140- @pytest .mark .parametrize (
141- "options" , [[], ["-opt=0" ], ["-opt=3" , "-g" ], [b"-opt=0" ], [b"-opt=3" , b"-g" ], ["-opt=3" , b"-g" ]]
142- )
138+ @pytest .mark .parametrize ("options" , [[], ["-opt=0" ], ["-opt=3" , "-g" ]])
143139def test_verify_program_with_minimal_nvvm_ir (minimal_nvvmir , options ): # noqa: F401, F811
144140 with nvvm_program () as prog :
145141 nvvm .add_module_to_program (prog , minimal_nvvmir , len (minimal_nvvmir ), "FileNameHere.ll" )
0 commit comments