forked from OSchip/llvm-project
Disallow driver use in more Sema tests
There are now only a handful of Sema tests remaining that use %clang in SemaCXX, SemaObjC and SemaTemplate. llvm-svn: 206688
This commit is contained in:
parent
8ee5b01f34
commit
07508405f4
|
@ -0,0 +1,4 @@
|
|||
config.substitutions = list(config.substitutions)
|
||||
config.substitutions.insert(0,
|
||||
(r'%clang\b',
|
||||
"""*** Do not use the driver in Sema tests. ***""") )
|
|
@ -0,0 +1,4 @@
|
|||
config.substitutions = list(config.substitutions)
|
||||
config.substitutions.insert(0,
|
||||
(r'%clang\b',
|
||||
"""*** Do not use the driver in Sema tests. ***""") )
|
|
@ -0,0 +1,4 @@
|
|||
config.substitutions = list(config.substitutions)
|
||||
config.substitutions.insert(0,
|
||||
(r'%clang\b',
|
||||
"""*** Do not use the driver in Sema tests. ***""") )
|
Loading…
Reference in New Issue