Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3abe3c4 authored by Jack Palevich's avatar Jack Palevich
Browse files

Add a --nox86 flag to allow disabling x86 tests

The x86 tests don't work on non-Linux systems.
parent 0a01a5db
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -14,11 +14,15 @@ gRunOTCCOutput = True

def parseArgv():
    global gUseArm
    global gUseX86
    global gRunOTCCOutput
    for arg in sys.argv[1:]:
        if arg == "--noarm":
            print "--noarm detected, not testing on ARM"
            print "--noarm: not testing ARM"
            gUseArm = False
        elif arg == "--nox86":
            print "--nox86: not testing x86"
            gUseX86 = False
        elif arg == "--norunotcc":
            print "--norunotcc detected, not running OTCC output"
            gRunOTCCOutput = False