Skip to content

Commit

Permalink
Minor fixes and changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vkbo committed Apr 17, 2019
1 parent 5d24663 commit 1adcbb9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions nightlyBuildSixTrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]],
}

Expand Down
16 changes: 8 additions & 8 deletions quickBuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
"""

Expand All @@ -75,7 +75,7 @@
theTypes = []
theFlags = []
theTest = "-L fast"
buildOut = False
buildOut = True
testOut = True
doClean = True

Expand All @@ -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
Expand Down

0 comments on commit 1adcbb9

Please sign in to comment.