Skip to content
Snippets Groups Projects

[Futurev4] fix failing tests

Merged Michal Mazurek requested to merge Futurev3_fix_failing_tests into Futurev4
All threads resolved!
1 file
+ 7
1
Compare changes
  • Side-by-side
  • Inline
@@ -66,7 +66,9 @@ preprocessor = (
],
regexps=[
r"MainEventGaussSim\s*DEBUG event 1 memory.*",
r"GaussGen\s*DEBUG event 1 memory.*"
r"GaussGen\s*DEBUG event 1 memory.*",
r"\w\\x\w\w", # LHAPDF is printing some junk of type a\x02
r"\w\\x\w\w\\x\w\w" # LHAPDF is printing some junk of type 1\xe6\xba
],
) + RegexpReplacer(
when="Connected to database",
@@ -98,6 +100,10 @@ preprocessor = (
when='LHAPDF',
orig=r'(LHAPDF .* loading ).*(/LHAPDFSets/.*)',
repl=r'\1...\2',
) + RegexpReplacer(
when="READ FSR",
orig=r'(DecFiles version:.*v\d\d)(r\d*)',
repl=r'\1',
) + LHAPDFWorkaround())
Loading