@@ -412,13 +412,23 @@ def make_main_two_files(path1, path2, nonexistingpath):
412
412
self .btest_exit ('main.cpp' , args = ['--pre-js' , 'pre.js' , '--use-preload-plugins' ])
413
413
414
414
# Tests that user .html shell files can manually download .data files created with --preload-file cmdline.
415
- def test_preload_file_with_manual_data_download (self ):
415
+ @parameterized ({
416
+ 'default' : ([],),
417
+ 'pthreads' : (['-pthread' , '-sPROXY_TO_PTHREAD' , '-sEXIT_RUNTIME' ],),
418
+ })
419
+ @requires_threads
420
+ def test_preload_file_with_manual_data_download (self , args ):
416
421
src = test_file ('manual_download_data.cpp' )
417
422
418
423
create_file ('file.txt' , '''Hello!''' )
419
424
420
- self .compile_btest ([src , '-o' , 'manual_download_data.js' , '--preload-file' , 'file.txt@/file.txt' ])
425
+ self .compile_btest ([src , '-o' , 'manual_download_data.js' , '--preload-file' , 'file.txt@/file.txt' ] + args )
421
426
shutil .copyfile (test_file ('manual_download_data.html' ), 'manual_download_data.html' )
427
+
428
+ # Move .data file out of server root to ensure that getPreloadedPackage is actually used
429
+ os .mkdir ('test' )
430
+ shutil .move ('manual_download_data.data' , 'test/manual_download_data.data' )
431
+
422
432
self .run_browser ('manual_download_data.html' , 'Hello!' , '/report_result?1' )
423
433
424
434
# Tests that if the output files have single or double quotes in them, that it will be handled by
0 commit comments