diff options
Diffstat (limited to 'tests/SConscript')
-rw-r--r-- | tests/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/SConscript b/tests/SConscript index 44389142d..8e219b30e 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -275,5 +275,6 @@ os.chdir(str(Dir('.').srcdir)) for config in configs: dirs = glob.glob('*/*/ref/%s/*/%s' % (env['TARGET_ISA'], config)) for d in dirs: - test_builder(env, d) + if not os.path.exists(os.path.join(d, 'skip')): + test_builder(env, d) os.chdir(cwd) |