Browse Source

CryptoPP has trouble on FreeBSD

default_compile_flags
vector-of-bool 4 years ago
parent
commit
0b9a7ce77b
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      tests/deps/use-cryptopp/test_use_cryptopp.py

+ 6
- 0
tests/deps/use-cryptopp/test_use_cryptopp.py View File

@@ -1,8 +1,14 @@
from tests import DDS
import platform

import pytest

from dds_ci import proc


@pytest.mark.skipif(
platform.system() == 'FreeBSD',
reason='This one has trouble running on FreeBSD')
def test_get_build_use_cryptopp(dds: DDS):
dds.catalog_import(dds.source_root / 'catalog.json')
tc_fname = 'gcc.tc.jsonc' if 'gcc' in dds.default_builtin_toolchain else 'msvc.tc.jsonc'

Loading…
Cancel
Save