@@ -210,33 +210,33 @@ def run_tests(pyb, tests, args, base_path="."):
210
210
skip_revops = False
211
211
212
212
# Check if micropython.native is supported, and skip such tests if it's not
213
- native = run_feature_check (pyb , args , base_path , 'native_check.py' )
214
- if native == b'CRASH' :
213
+ output = run_feature_check (pyb , args , base_path , 'native_check.py' )
214
+ if output == b'CRASH' :
215
215
skip_native = True
216
216
217
217
# Check if arbitrary-precision integers are supported, and skip such tests if it's not
218
- native = run_feature_check (pyb , args , base_path , 'int_big.py' )
219
- if native != b'1000000000000000000000000000000000000000000000\n ' :
218
+ output = run_feature_check (pyb , args , base_path , 'int_big.py' )
219
+ if output != b'1000000000000000000000000000000000000000000000\n ' :
220
220
skip_int_big = True
221
221
222
222
# Check if set type (and set literals) is supported, and skip such tests if it's not
223
- native = run_feature_check (pyb , args , base_path , 'set_check.py' )
224
- if native == b'CRASH' :
223
+ output = run_feature_check (pyb , args , base_path , 'set_check.py' )
224
+ if output == b'CRASH' :
225
225
skip_set_type = True
226
226
227
227
# Check if async/await keywords are supported, and skip such tests if it's not
228
- native = run_feature_check (pyb , args , base_path , 'async_check.py' )
229
- if native == b'CRASH' :
228
+ output = run_feature_check (pyb , args , base_path , 'async_check.py' )
229
+ if output == b'CRASH' :
230
230
skip_async = True
231
231
232
232
# Check if const keyword (MicroPython extension) is supported, and skip such tests if it's not
233
- native = run_feature_check (pyb , args , base_path , 'const.py' )
234
- if native == b'CRASH' :
233
+ output = run_feature_check (pyb , args , base_path , 'const.py' )
234
+ if output == b'CRASH' :
235
235
skip_const = True
236
236
237
237
# Check if __rOP__ special methods are supported, and skip such tests if it's not
238
- native = run_feature_check (pyb , args , base_path , 'reverse_ops.py' )
239
- if native == b'TypeError\n ' :
238
+ output = run_feature_check (pyb , args , base_path , 'reverse_ops.py' )
239
+ if output == b'TypeError\n ' :
240
240
skip_revops = True
241
241
242
242
# Check if emacs repl is supported, and skip such tests if it's not
0 commit comments