Skip to content

Commit

Permalink
Fix benchmark.test_zzz_sqlite (#17884)
Browse files Browse the repository at this point in the history
There was a typo in `third_party/sqlite`.
  • Loading branch information
sbc100 authored Sep 19, 2022
1 parent 10a3508 commit 06951ff
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/test_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -1039,8 +1039,11 @@ def lib_builder(name, native, env_init):

def test_zzz_sqlite(self):
src = read_file(test_file('third_party/sqlite/sqlite3.c')) + read_file(test_file('sqlite/speedtest1.c'))
self.do_benchmark('sqlite', src, 'TOTAL...', native_args=['-ldl', '-pthread'], shared_args=['-I' + test_file('third_part/sqlite')],
emcc_args=['-sFILESYSTEM', '-sMINIMAL_RUNTIME=0'], # not minimal because of files
self.do_benchmark('sqlite', src, 'TOTAL...',
native_args=['-ldl', '-pthread'],
shared_args=['-I' + test_file('third_party/sqlite')],
# not minimal because of files
emcc_args=['-sFILESYSTEM', '-sMINIMAL_RUNTIME=0'],
force_c=True)

def test_zzz_poppler(self):
Expand Down

0 comments on commit 06951ff

Please sign in to comment.