Skip to content
Snippets Groups Projects
Commit b9e9d8c9 authored by Ben Gamari's avatar Ben Gamari
Browse files

testsuite: Fix req_th

parent e8adffb5
No related branches found
No related tags found
No related merge requests found
# vim: set filetype=python:
import re
# Testsuite configuration setup for GHC
......
......@@ -193,7 +193,8 @@ def req_th( name, opts ):
case.
"""
req_interp(name, opts)
return when(ghc_dynamic(), omit_ways(['profasm']))
if ghc_dynamic():
return _omit_ways(name, opts, ['profasm', 'profthreaded'])
def req_smp( name, opts ):
if not config.have_smp:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment