Skip to content

Commit 82b6061

Browse files
committed
Exclude tests/plugin/compound-locations before GCC 7
1 parent 218fdc5 commit 82b6061

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

run-test-suite.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -751,6 +751,10 @@ def exclude_tests_below(path):
751751
if GCC_VERSION < 6000:
752752
exclude_test('tests/examples/find-global-state')
753753

754+
# compound locations are only supported for GCC 7 and later:
755+
if GCC_VERSION < 7000:
756+
exclude_test('tests/plugin/compound-locations')
757+
754758
def run_one_test(testdir):
755759
try:
756760
sys.stdout.write('%s: ' % testdir)

0 commit comments

Comments
 (0)