run_tests: fix QUICK_AND_DIRTY handling

os.environ expects a string, not an integer

Signed-off-by: Rafal Kolanski <rafal.kolanski@proofcraft.systems>
This commit is contained in:
Rafal Kolanski 2023-05-25 13:12:07 +10:00 committed by Gerwin Klein
parent 7b73a18757
commit 496f70f7a6
No known key found for this signature in database
GPG Key ID: 20A847CE6AB7F5F3
1 changed files with 4 additions and 4 deletions

View File

@ -25,9 +25,9 @@ os.environ["ISABELLE_TIMING_LOG"]="3.0s"
# Enable quick_and_dirty mode for various images
if "QUICK_AND_DIRTY" in os.environ:
os.environ["AINVS_QUICK_AND_DIRTY"]=1
os.environ["REFINE_QUICK_AND_DIRTY"]=1
os.environ["CREFINE_QUICK_AND_DIRTY"]=1
os.environ["AINVS_QUICK_AND_DIRTY"]="1"
os.environ["REFINE_QUICK_AND_DIRTY"]="1"
os.environ["CREFINE_QUICK_AND_DIRTY"]="1"
print("Testing with QUICK_AND_DIRTY")
# Lists of excluded tests for different archs
@ -135,7 +135,7 @@ for arch in archs:
# Permit sorries in AARCH64 Refine during development
if arch == "AARCH64":
os.environ["REFINE_QUICK_AND_DIRTY"]=1
os.environ["REFINE_QUICK_AND_DIRTY"]="1"
print("Testing AARCH64 Refine in quick and dirty mode")
sys.stdout.flush()