Skip to content
Snippets Groups Projects

Allow to turn FPE checks off

Merged Walter Lampl requested to merge wlampl/athena:allowNoFPECheck into master
All threads resolved!
3 files
+ 4
3
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -24,7 +24,7 @@ def _createCfgFlags():
acf.addFlag('Exec.MaxEvents',-1)
acf.addFlag('Exec.SkipEvents',0)
acf.addFlag('Exec.DebugStage','')
acf.addFlag('Exec.FPE',0) #-1: Abort with core-dump, 0: FPE Auditor w/o stack-tace, >0: number of stack-trace printed by the job
acf.addFlag('Exec.FPE',0) #-2: No FPE check at all, -1: Abort with core-dump, 0: FPE Auditor w/o stack-tace (default) , >0: number of stack-trace printed by the job
acf.addFlag('ExecutorSplitting.TotalSteps', 0)
acf.addFlag('ExecutorSplitting.Step', -1)
Loading