@@ -765,7 +765,7 @@ def test_loop(self):
765
765
self .do_core_test ('test_loop.c' )
766
766
767
767
def test_stack (self ):
768
- self .set_setting ('INLINING_LIMIT' , 50 )
768
+ self .set_setting ('INLINING_LIMIT' )
769
769
# some extra coverage in all test suites for stack checks
770
770
self .set_setting ('STACK_OVERFLOW_CHECK' , 2 )
771
771
@@ -1238,7 +1238,7 @@ def test_exceptions_3(self):
1238
1238
def test_exceptions_allowed (self ):
1239
1239
self .set_setting ('EXCEPTION_CATCHING_ALLOWED' , ["_Z12somefunctionv" ])
1240
1240
# otherwise it is inlined and not identified
1241
- self .set_setting ('INLINING_LIMIT' , 50 )
1241
+ self .set_setting ('INLINING_LIMIT' )
1242
1242
1243
1243
self .do_core_test ('test_exceptions_allowed.cpp' )
1244
1244
size = os .path .getsize ('test_exceptions_allowed.js' )
@@ -1622,7 +1622,7 @@ def test_stack_varargs(self):
1622
1622
# of the program directory influences how much stack we need, and so
1623
1623
# long random temp dir names can lead to random failures. The stack
1624
1624
# size was increased here to avoid that.
1625
- self .set_setting ('INLINING_LIMIT' , 50 )
1625
+ self .set_setting ('INLINING_LIMIT' )
1626
1626
self .set_setting ('TOTAL_STACK' , 8 * 1024 )
1627
1627
1628
1628
self .do_core_test ('test_stack_varargs.c' )
@@ -1708,7 +1708,7 @@ def test_stack_varargs2(self):
1708
1708
1709
1709
def test_stack_void (self ):
1710
1710
self .emcc_args .append ('-Wno-format-extra-args' )
1711
- self .set_setting ('INLINING_LIMIT' , 50 )
1711
+ self .set_setting ('INLINING_LIMIT' )
1712
1712
self .do_core_test ('test_stack_void.c' )
1713
1713
1714
1714
def test_life (self ):
@@ -2286,7 +2286,7 @@ def test_functionpointer_libfunc_varargs(self):
2286
2286
self .do_core_test ('test_functionpointer_libfunc_varargs.c' )
2287
2287
2288
2288
def test_structbyval (self ):
2289
- self .set_setting ('INLINING_LIMIT' , 50 )
2289
+ self .set_setting ('INLINING_LIMIT' )
2290
2290
2291
2291
# part 1: make sure that normally, passing structs by value works
2292
2292
@@ -6016,7 +6016,7 @@ def test_sqlite(self):
6016
6016
self .set_setting ('EXPORTED_FUNCTIONS' , ['_main' , '_sqlite3_open' , '_sqlite3_close' , '_sqlite3_exec' , '_sqlite3_free' ])
6017
6017
if '-g' in self .emcc_args :
6018
6018
print ("disabling inlining" ) # without registerize (which -g disables), we generate huge amounts of code
6019
- self .set_setting ('INLINING_LIMIT' , 50 )
6019
+ self .set_setting ('INLINING_LIMIT' )
6020
6020
6021
6021
# newer clang has a warning for implicit conversions that lose information,
6022
6022
# which happens in sqlite (see #9138)
0 commit comments