VirtualBox

Changeset 97840 in vbox for trunk


Ignore:
Timestamp:
Dec 20, 2022 11:39:29 AM (22 months ago)
Author:
vboxsync
Message:

ValidationKit/testboxscript: Make it support arm64 and python >= 3, bugref:9898

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testboxscript/setup.sh

    r96407 r97840  
    151151        arm|armv4l|armv5tel|armv5tejl)
    152152            RETVAL='arm'
     153            ;;
     154        arm64|aarch64)
     155            RETVAL='arm64'
    153156            ;;
    154157        alpha)
     
    667670    MY_PYTHON_VER_TEST="\
    668671import sys;\
    669 x = sys.version_info[0] == 2 and (sys.version_info[1] >= 6 or (sys.version_info[1] == 5 and sys.version_info[2] >= 1));\
     672x = sys.version_info[0] == 3 or (sys.version_info[0] == 2 and (sys.version_info[1] >= 6 or (sys.version_info[1] == 5 and sys.version_info[2] >= 1)));\
    670673sys.exit(not x);\
    671674";
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette