Add ability to skip tests by adding 'skip' file to test dir,

and skip simple-timing-mp-ruby test for now (until we fix ruby atomics).
This commit is contained in:
Steve Reinhardt 2009-07-06 22:45:58 -07:00
parent 7ffb8e5914
commit d7f9c86981
2 changed files with 3 additions and 1 deletions

View file

@ -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)

View file

@ -0,0 +1 @@
Skipping for now due to broken atomics in ruby