You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 3 месеци
пре 3 месеци
пре 3 месеци
123456789101112131415161718192021
  1. #!/usr/bin/env python3
  2. import os
  3. import sys
  4. SCRIPT_DIR = os.path.dirname(os.path.realpath(sys.argv[0]))
  5. sys.path.append(f"{SCRIPT_DIR}/../../cross-language-dialect/lib")
  6. from cfg_aux_test import *
  7. from cfg_test import *
  8. functions = [
  9. test_cfg_parseConfigTree,
  10. test_cfg_aux_textureName,
  11. test_cfg_aux_tree,
  12. test_cfg_aux_treeCreateSection,
  13. test_cfg_aux_treeSetKeyValue,
  14. ]
  15. for f in functions:
  16. print(f())