Move tests from projects/ to tests/

This commit is contained in:
Martin Hořeňovský
2019-12-05 16:00:20 +01:00
parent 90e2549cec
commit 0fea081ad1
84 changed files with 2429 additions and 2429 deletions

View File

@@ -16,7 +16,7 @@ if os.name == 'nt':
# Enable console colours on windows
os.system('')
rootPath = os.path.join(catchPath, 'projects/SelfTest/Baselines')
rootPath = os.path.join(catchPath, 'tests/SelfTest/Baselines')
langFilenameParser = re.compile(r'(.+\.[ch]pp)')
filelocParser = re.compile(r'''

View File

@@ -8,7 +8,7 @@ import shutil
import glob
from scriptCommon import catchPath
rootPath = os.path.join( catchPath, 'projects/SelfTest/Baselines' )
rootPath = os.path.join( catchPath, 'tests/SelfTest/Baselines' )
if len(sys.argv) > 1:
files = [os.path.join( rootPath, f ) for f in sys.argv[1:]]