summaryrefslogtreecommitdiff
path: root/tests/run-tests
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-03-15 13:20:18 +0000
committerDamien George <damien.p.george@gmail.com>2016-03-15 13:20:18 +0000
commit157056ecdf378898996ba095c3d7bcf625368103 (patch)
tree21f508f1ba8ab951b3acb59605d23825778b6dc9 /tests/run-tests
parentab69ed7dac1bf0ef36238b6289d436e9932180bc (diff)
tests: Add new subdir "stress/" specifically for stress tests.
Diffstat (limited to 'tests/run-tests')
-rwxr-xr-xtests/run-tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-tests b/tests/run-tests
index feb971c97..887af701c 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -365,7 +365,7 @@ def main():
if args.test_dirs is None:
if args.target == 'pyboard':
# run pyboard tests
- test_dirs = ('basics', 'micropython', 'float', 'misc', 'extmod', 'pyb', 'pybnative', 'inlineasm')
+ test_dirs = ('basics', 'micropython', 'float', 'misc', 'stress', 'extmod', 'pyb', 'pybnative', 'inlineasm')
elif args.target == 'esp8266':
test_dirs = ('basics', 'micropython', 'float', 'misc', 'extmod')
elif args.target == 'wipy':
@@ -373,7 +373,7 @@ def main():
test_dirs = ('basics', 'micropython', 'misc', 'extmod', 'wipy')
else:
# run PC tests
- test_dirs = ('basics', 'micropython', 'float', 'import', 'io', 'misc', 'unicode', 'extmod', 'unix', 'cmdline')
+ test_dirs = ('basics', 'micropython', 'float', 'import', 'io', 'misc', 'stress', 'unicode', 'extmod', 'unix', 'cmdline')
else:
# run tests from these directories
test_dirs = args.test_dirs