From 1adcbb9e057a4bd96a720bc66c44c0b69820e833 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Wed, 17 Apr 2019 14:17:34 +0200 Subject: [PATCH] Minor fixes and changes --- nightlyBuildSixTrack.py | 1 + quickBuild.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/nightlyBuildSixTrack.py b/nightlyBuildSixTrack.py index 16688b2..efe0436 100755 --- a/nightlyBuildSixTrack.py +++ b/nightlyBuildSixTrack.py @@ -66,6 +66,7 @@ "Beam-Gas" : [["g","i","n"], "BEAMGAS", [None,None]], "Fluka Coupling" : [["g","i","n"], "FLUKA", [None,None]], "Merlin Scattering" : [["g","i","n"], "MERLINSCATTER", [None,None]], +# "Geant4 Scattering" : [["g","i","n"], "G4COLLIMAT", [None,None]], "DEBUG Flag" : [["g","i","n"], "DEBUG", [None,None]], } diff --git a/quickBuild.py b/quickBuild.py index 7007dfd..518cbce 100755 --- a/quickBuild.py +++ b/quickBuild.py @@ -62,8 +62,8 @@ * Build Flags: Any flag that is accepted by the CMake. BUILD_TESTING is implied. * Run Tests: fast, medium, slow, fastmedium, gonuts (last one runs '-E prob') * Delete Work Dir: clean, messy (for do clean up, and don't, respectively) - * Show Build Output: buildout, nobuildout - * Show Test Output: testout, notestout + * Show Build Output: showbuild, hidebuild + * Show Test Output: showtests, hidetests * Show Output: spammy, quiet (sets both of the above at the same time) """ @@ -75,7 +75,7 @@ theTypes = [] theFlags = [] theTest = "-L fast" -buildOut = False +buildOut = True testOut = True doClean = True @@ -102,14 +102,14 @@ elif inArg == "fastmedium": theTest = "-L \"fast|medium\"" elif inArg == "gonuts": - theTest = "-E prob" - elif inArg in ("buildout","spammy"): + theTest = "all" + elif inArg in ("showbuild","spammy"): buildOut = True - elif inArg in ("nobuildout","quiet"): + elif inArg in ("hidebuild","quiet"): buildOut = False - elif inArg in ("testdout","spammy"): + elif inArg in ("showtest","showtests","spammy"): testOut = True - elif inArg in ("notestdout","quiet"): + elif inArg in ("hidetest","hidetests","quiet"): testOut = False elif inArg in "clean": doClean = True