File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -7089,6 +7089,8 @@ def test_bullet(self, use_cmake):
7089
7089
@no_wasm64 ('MEMORY64 does not yet support SJLJ' )
7090
7090
@is_slow_test
7091
7091
def test_poppler (self ):
7092
+ # See https://github.com/emscripten-core/emscripten/issues/20757
7093
+ self .emcc_args .append ('-Wno-deprecated-declarations' )
7092
7094
poppler = self .get_poppler_library ()
7093
7095
pdf_data = read_binary (test_file ('poppler/paper.pdf' ))
7094
7096
create_file ('paper.pdf.js' , str (list (bytearray (pdf_data ))))
@@ -7647,6 +7649,9 @@ def test2():
7647
7649
})
7648
7650
def test_embind (self , args ):
7649
7651
self .maybe_closure ()
7652
+ # This test explicitly creates std::string from unsigned char pointers
7653
+ # which is deprecated in upstream LLVM.
7654
+ self .emcc_args .append ('-Wno-deprecated-declarations' )
7650
7655
create_file ('test_embind.cpp' , r'''
7651
7656
#include <stdio.h>
7652
7657
#include <emscripten/val.h>
You can’t perform that action at this time.
0 commit comments