##// END OF EJS Templates
Adds "hybrid" server mode...
Adds "hybrid" server mode Hybrid mode allows to use both the default server and the test server, depending on the "server" setting of each product in the JSON file

File last commit:

r1040:d45cab418d5a
r1118:7dc72cc510ff
Show More
meson.build
36 lines | 1.7 KiB | text/plain | TextLexer
Added Meson support....
r620
tests = [
Alexandre Leroux
Generates unique name for variable duplicate
r709 [['Common/TestStringUtils.cpp'],'test_string_utils','StringUtils test'],
Alexandre Leroux
Unit tests (2): Refactoring...
r865 [['Data/TestScalarSeries.cpp'],'test_scalar','ScalarSeries test'],
Alexandre Leroux
Unit tests (3)...
r866 [['Data/TestSpectrogramSeries.cpp'],'test_spectrogram','SpectrogramSeries test'],
Alexandre Leroux
Unit tests (2): Refactoring...
r865 [['Data/TestVectorSeries.cpp'],'test_vector','VectorSeries test'],
Set tests output format to teamcity with meson....
r633 [['Data/TestOneDimArrayData.cpp'],'test_1d','One Dim Array test'],
Alexandre Leroux
Unit tests for optional axis
r860 [['Data/TestOptionalAxis.cpp'],'test_optional_axis','OptionalAxis test'],
Set tests output format to teamcity with meson....
r633 [['Data/TestTwoDimArrayData.cpp'],'test_2d','Two Dim Array test'],
Alexandre Leroux
Unit tests for fillDataHoles() method
r979 [['Data/TestDataSeriesUtils.cpp'],'test_dataseries_util','Data series utils test'],
Set tests output format to teamcity with meson....
r633 [['DataSource/TestDataSourceController.cpp'],'test_data_source','DataSourceController test'],
Alexandre Leroux
Inits unit tests for merge
r1039 [['DataSource/TestDataSourceItem.cpp'],'test_data_source_item','DataSourceItem test'],
Set tests output format to teamcity with meson....
r633 [['Variable/TestVariableCacheController.cpp'],'test_variable_cache','VariableCacheController test'],
Alexandre Leroux
Revert "Disables TestVariableSync"...
r891 [['Variable/TestVariable.cpp'],'test_variable','Variable test'],
[['Variable/TestVariableSync.cpp'],'test_variable_sync','Variable synchronization test']
Added Meson support....
r620 ]
Alexandre Leroux
Fixes meson build
r888 amdatest_sources = [
'Data/DataSeriesBuilders.h',
'Data/DataSeriesBuilders.cpp',
Alexandre Leroux
Creates DataSeriesUtils file that will contain methods for handling data holes...
r977 'Data/DataSeriesTestsUtils.h',
Alexandre Leroux
Creates builder used to facilitate creation of items (for test cases)
r1040 'Data/DataSeriesTestsUtils.cpp',
'DataSource/DataSourceItemBuilder.h',
'DataSource/DataSourceItemBuilder.cpp'
Alexandre Leroux
Fixes meson build
r888 ]
Added Meson support....
r620 foreach unit_test : tests
test_moc_files = qt5.preprocess(moc_sources : unit_test[0])
test_exe = executable(unit_test[1],unit_test[0] , test_moc_files,
Alexandre Leroux
Fixes meson build
r888 dependencies : [sciqlop_core, qt5test],
Alexandre Leroux
Unit tests for thresholds
r1016 cpp_args : ['-DCORE_TESTS_RESOURCES_DIR="'+meson.current_source_dir()+'/../tests-resources"'],
Alexandre Leroux
Fixes meson build
r888 sources : [amdatest_sources])
Set tests output format to teamcity with meson....
r633 test(unit_test[2], test_exe, args: ['-teamcity', '-o', '@0@.teamcity.txt'.format(unit_test[1])])
Added Meson support....
r620 endforeach