您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
392B

  1. from tests import DDS
  2. from dds_ci import proc
  3. def test_get_build_use_spdlog(dds: DDS):
  4. dds.catalog_import(dds.source_root / 'catalog.json')
  5. tc_fname = 'gcc.tc.dds' if 'gcc' in dds.default_builtin_toolchain else 'msvc.tc.dds'
  6. tc = str(dds.test_dir / tc_fname)
  7. dds.build(toolchain=tc, apps=True)
  8. proc.check_run((dds.build_dir / 'use-spdlog').with_suffix(dds.exe_suffix))