Ports that now run the stress tests, that didn't prior to this commit are: cc3200, esp8266, minimal, nrf, renesas-ra, samd, qemu, webassembly. Signed-off-by: Damien George <damien@micropython.org>
12 lines
180 B
Python
12 lines
180 B
Python
# create a large dictionary
|
|
|
|
d = {}
|
|
x = 1
|
|
while x < 1000:
|
|
try:
|
|
d[x] = x
|
|
except MemoryError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
x += 1
|
|
print(d[500])
|