tests: autoptr test can be run on gcc, clang, intel

The only place where it won't work, is MSVC and maybe Sun Studio, but
we'd need someone to test Sun Studio first.
This commit is contained in:
Nirbheek Chauhan 2016-12-29 08:09:44 +05:30 committed by Matthias Clasen
parent 9096bde3ce
commit 3c62619930
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ if host_machine.system() != 'windows'
]
endif
if cc.get_id() == 'gcc' or cc.get_id() == 'clang'
if cc.get_id() != 'msvc'
gio_tests += [ 'autoptr' ]
endif

View File

@ -79,7 +79,7 @@ if host_machine.system() != 'windows'
glib_tests += [ 'unix', 'include' ]
endif
if cc.get_id() == 'gcc'
if cc.get_id() != 'msvc'
glib_tests += [ 'autoptr' ]
endif