Skip to content

Commit abc108b

Browse files
author
Caspar van Leeuwen
committed
Spread over two writes
1 parent b14cceb commit abc108b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/framework/toy_build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3234,7 +3234,8 @@ def test_toy_cuda_sanity_check(self):
32343234
cuda_mod_file = os.path.join(cuda_mod_dir, '5.5.22.lua')
32353235
cuda_mod_file_tcl = os.path.join(cuda_mod_dir, '5.5.22')
32363236
write_file(cuda_mod_file, "-- Fake module content for CUDA")
3237-
write_file(cuda_mod_file_tcl, "#%Module1.0\n#This is a fake module file for CUDA")
3237+
write_file(cuda_mod_file_tcl, "#%Module1.0")
3238+
write_file(cuda_mod_file_tcl, "#This is a fake module file for CUDA", append=True)
32383239
setvar('MODULEPATH', module_dir)
32393240

32403241
# Filepath to cuobjdump

0 commit comments

Comments
 (0)