@@ -5594,7 +5594,7 @@ def test_emrun(self):
55945594 args_base + ['--private_browsing' , '--port' , '6941' ],
55955595 args_base + ['--dump_out_directory' , 'other dir/multiple' , '--port' , '6942' ]
55965596 ]:
5597- args += [self .in_dir ('hello_world.html' ), '--' , '1' , '2' , '--3' , 'escaped space' ]
5597+ args += [self .in_dir ('hello_world.html' ), '--' , '1' , '2' , '--3' , 'escaped space' , 'with_underscore' ]
55985598 print (shared .shlex_join (args ))
55995599 proc = self .run_process (args , check = False )
56005600 self .assertEqual (proc .returncode , 100 )
@@ -5607,6 +5607,7 @@ def test_emrun(self):
56075607 self .assertContained ('argc: 5' , stdout )
56085608 self .assertContained ('argv[3]: --3' , stdout )
56095609 self .assertContained ('argv[4]: escaped space' , stdout )
5610+ self .assertContained ('argv[5]: with_underscore' , stdout )
56105611 self .assertContained ('hello, world!' , stdout )
56115612 self .assertContained ('Testing ASCII characters: !"$%&\' ()*+,-./:;<=>?@[\\ ]^_`{|}~' , stdout )
56125613 self .assertContained ('Testing char sequences: %20%21 ä' , stdout )
0 commit comments