1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-11-28 10:24:20 +01:00

fix(sourcehook): Disable tests on linux x64 for now

This commit is contained in:
Nick Hastings 2024-08-04 11:19:19 -04:00 committed by Nicholas Hastings
parent 994b382754
commit 5d48696528

View File

@ -4,6 +4,8 @@ import os
for cxx in MMS.all_targets:
name = 'test_sourcehook'
binary = MMS.Program(cxx, name)
if binary.compiler.target.arch == 'x86_64' and binary.compiler.target.platform == 'linux':
continue
binary.compiler.defines += [
'SOURCEHOOK_TESTS',