Skip to content

Commit 97de3e2

Browse files
committed
temp saving to test ci - some test still not passing
1 parent 4880951 commit 97de3e2

28 files changed

Lines changed: 53 additions & 49 deletions

File tree

ci/build.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@ test_options=(
6868

6969
# Specific tests to run when sanitizer is enabled
7070
sanitizer_tests=(
71+
-v
7172
api_run_gemc_with_replaced_geometry_using_G4Box_with_formatascii
72-
test_gstreamer_csv
73-
test_gparticle_double
74-
test_event_dispenser
73+
test_gstreamer_csv_verbose
74+
test_gparticle_double_verbose
75+
test_event_dispenser_verbose
7576
examples_geo_basic_simple_flux_ascii_variation_default
7677
)
7778

dbselect/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sub_dir_name = meson.current_source_dir().split('/').get(-1)
2-
internal_deps = []
2+
internal_deps = ['goptions', 'guts', 'glogging', 'gtouchable', 'gdata', 'gtranslationTable', 'ghit', 'gfactory', 'gdynamicDigitization', 'g4system']
33

44
with_gui = ['']
55
if get_option('i_test')

eventDispenser/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sub_dir_name = meson.current_source_dir().split('/').get(-1)
2-
internal_deps = []
2+
internal_deps = ['goptions', 'guts', 'glogging', 'gtouchable', 'gdata', 'gtranslationTable', 'ghit', 'gfactory', 'gdynamicDigitization']
33

44
example_source = files('examples/event_dispenser_example.cc')
55
verbosities = ['-verbosity.eventdispenser=2',

g4dialog/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sub_dir_name = meson.current_source_dir().split('/').get(-1)
2-
internal_deps = []
2+
internal_deps = ['goptions', 'guts', 'glogging']
33

44
with_gui = ['']
55
if get_option('i_test')

g4display/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sub_dir_name = meson.current_source_dir().split('/').get(-1)
2-
internal_deps = []
2+
internal_deps = ['goptions', 'guts', 'glogging', 'gqtbuttonswidget']
33

44
with_gui = ['']
55
if get_option('i_test')

g4system/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sub_dir_name = meson.current_source_dir().split('/').get(-1)
2-
internal_deps = []
2+
internal_deps = ['goptions', 'guts', 'glogging', 'gsystem', 'gfactory']
33

44
example_source = files('examples/g4system_example.cc')
55
examples_dir = get_option('prefix') + '/test/' + sub_dir_name

gbase/examples/test_gbase.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
#include "gbase.h"
33

4-
constexpr const char* G1_LOGGER = "gdetector";
5-
constexpr const char* G2_LOGGER = "gfield";
4+
constexpr const char* G1_LOGGER = "hello1";
5+
constexpr const char* G2_LOGGER = "hello2";
66

77
// derived with its own logger
88
class g1 : public GBase<g1> {

gbase/meson.build

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
sub_dir_name = meson.current_source_dir().split('/').get(-1)
2-
internal_deps = []
2+
internal_deps = ['glogging', 'goptions', 'guts']
33

44
example_source = files('examples/test_gbase.cc')
55
verbosity = [
6-
'-verbosity.gdetector=2',
7-
'-debug.gdetector=true',
8-
'-verbosity.gfield=2',
9-
'-debug.gfield=true'
6+
'-verbosity.hello1=2',
7+
'-debug.hello1=true',
8+
'-verbosity.hello2=2',
9+
'-debug.hello2=true'
1010
]
1111

1212
LD += {

gboard/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sub_dir_name = meson.current_source_dir().split('/').get(-1)
2-
internal_deps = []
2+
internal_deps = ['glogging', 'goptions', 'guts']
33

44
with_gui = ['']
55
if get_option('i_test')
@@ -36,7 +36,7 @@ LD += {
3636
'sources' : sources,
3737
'headers' : headers,
3838
'moc_headers' : moc_headers,
39-
'dependencies' : [yaml_cpp_dep, qt6_deps, clhep_deps, geant4_core_deps],
39+
'dependencies' : [yaml_cpp_dep, qt6_deps, clhep_deps, geant4_deps],
4040
'internal_dependencies' : internal_deps,
4141
'additional_includes' : ['gboard'],
4242
'examples' : examples

gdata/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sub_dir_name = meson.current_source_dir().split('/').get(-1)
2-
internal_deps = []
2+
internal_deps = ['goptions', 'guts', 'gtouchable', 'ghit']
33

44
example_event_source = files('examples/event_example.cc')
55
example_frame_source = files('examples/gframe_example.cc')

0 commit comments

Comments
 (0)