File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -508,6 +508,7 @@ jobs:
508
508
other.test_embed_file_dup
509
509
other.test_dot_a_all_contents_invalid
510
510
other.test_emcc_print_search_dirs
511
+ other.test_emcc_print_file_name
511
512
other.test_pkg_config*"
512
513
# Run a single websockify-based test to ensure it works on windows.
513
514
- run-tests :
Original file line number Diff line number Diff line change @@ -626,7 +626,8 @@ def test_emcc_print_search_dirs(self):
626
626
def test_emcc_print_file_name (self ):
627
627
self .run_process ([EMBUILDER , 'build' , 'libc' ])
628
628
output = self .run_process ([EMCC , '-print-file-name=libc.a' ], stdout = PIPE ).stdout
629
- self .assertContained (shared .Cache .get_lib_name ('libc.a' ), output )
629
+ filename = Path (output )
630
+ self .assertContained (shared .Cache .get_lib_name ('libc.a' ), str (filename ))
630
631
631
632
def test_emar_em_config_flag (self ):
632
633
# Test that the --em-config flag is accepted but not passed down do llvm-ar.
You can’t perform that action at this time.
0 commit comments