Changeset 96407 in vbox for trunk/src/VBox/ValidationKit/testmanager/batch
- Timestamp:
- Aug 22, 2022 5:43:14 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 153224
- Location:
- trunk/src/VBox/ValidationKit/testmanager/batch
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/Makefile.kmk
r93115 r96407 5 5 6 6 # 7 # Copyright (C) 2006-2022 Oracle Corporation7 # Copyright (C) 2006-2022 Oracle and/or its affiliates. 8 8 # 9 # This file is part of VirtualBox Open Source Edition (OSE), as 10 # available from http://www.virtualbox.org. This file is free software; 11 # you can redistribute it and/or modify it under the terms of the GNU 12 # General Public License (GPL) as published by the Free Software 13 # Foundation, in version 2 as it comes in the "COPYING" file of the 14 # VirtualBox OSE distribution. VirtualBox OSE is distributed in the 15 # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 9 # This file is part of VirtualBox base platform packages, as 10 # available from https://www.virtualbox.org. 11 # 12 # This program is free software; you can redistribute it and/or 13 # modify it under the terms of the GNU General Public License 14 # as published by the Free Software Foundation, in version 3 of the 15 # License. 16 # 17 # This program is distributed in the hope that it will be useful, but 18 # WITHOUT ANY WARRANTY; without even the implied warranty of 19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 # General Public License for more details. 21 # 22 # You should have received a copy of the GNU General Public License 23 # along with this program; if not, see <https://www.gnu.org/licenses>. 16 24 # 17 25 # The contents of this file may alternatively be used under the terms 18 26 # of the Common Development and Distribution License Version 1.0 19 # (CDDL) only, as it comes in the "COPYING.CDDL" file of the20 # VirtualBox OSEdistribution, in which case the provisions of the27 # (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 28 # in the VirtualBox distribution, in which case the provisions of the 21 29 # CDDL are applicable instead of those of the GPL. 22 30 # 23 31 # You may elect to license modified versions of this file under the 24 32 # terms and conditions of either the GPL or the CDDL or both. 33 # 34 # SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 25 35 # 26 36 -
trunk/src/VBox/ValidationKit/testmanager/batch/add_build.py
r93115 r96407 10 10 __copyright__ = \ 11 11 """ 12 Copyright (C) 2012-2022 Oracle Corporation12 Copyright (C) 2012-2022 Oracle and/or its affiliates. 13 13 14 This file is part of VirtualBox Open Source Edition (OSE), as 15 available from http://www.virtualbox.org. This file is free software; 16 you can redistribute it and/or modify it under the terms of the GNU 17 General Public License (GPL) as published by the Free Software 18 Foundation, in version 2 as it comes in the "COPYING" file of the 19 VirtualBox OSE distribution. VirtualBox OSE is distributed in the 20 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 14 This file is part of VirtualBox base platform packages, as 15 available from https://www.virtualbox.org. 16 17 This program is free software; you can redistribute it and/or 18 modify it under the terms of the GNU General Public License 19 as published by the Free Software Foundation, in version 3 of the 20 License. 21 22 This program is distributed in the hope that it will be useful, but 23 WITHOUT ANY WARRANTY; without even the implied warranty of 24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 25 General Public License for more details. 26 27 You should have received a copy of the GNU General Public License 28 along with this program; if not, see <https://www.gnu.org/licenses>. 21 29 22 30 The contents of this file may alternatively be used under the terms 23 31 of the Common Development and Distribution License Version 1.0 24 (CDDL) only, as it comes in the "COPYING.CDDL" file of the25 VirtualBox OSEdistribution, in which case the provisions of the32 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 33 in the VirtualBox distribution, in which case the provisions of the 26 34 CDDL are applicable instead of those of the GPL. 27 35 28 36 You may elect to license modified versions of this file under the 29 37 terms and conditions of either the GPL or the CDDL or both. 38 39 SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 30 40 """ 31 41 __version__ = "$Revision$" -
trunk/src/VBox/ValidationKit/testmanager/batch/check_for_deleted_builds.py
r93115 r96407 17 17 __copyright__ = \ 18 18 """ 19 Copyright (C) 2012-2022 Oracle Corporation19 Copyright (C) 2012-2022 Oracle and/or its affiliates. 20 20 21 This file is part of VirtualBox Open Source Edition (OSE), as 22 available from http://www.virtualbox.org. This file is free software; 23 you can redistribute it and/or modify it under the terms of the GNU 24 General Public License (GPL) as published by the Free Software 25 Foundation, in version 2 as it comes in the "COPYING" file of the 26 VirtualBox OSE distribution. VirtualBox OSE is distributed in the 27 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 21 This file is part of VirtualBox base platform packages, as 22 available from https://www.virtualbox.org. 23 24 This program is free software; you can redistribute it and/or 25 modify it under the terms of the GNU General Public License 26 as published by the Free Software Foundation, in version 3 of the 27 License. 28 29 This program is distributed in the hope that it will be useful, but 30 WITHOUT ANY WARRANTY; without even the implied warranty of 31 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 32 General Public License for more details. 33 34 You should have received a copy of the GNU General Public License 35 along with this program; if not, see <https://www.gnu.org/licenses>. 28 36 29 37 The contents of this file may alternatively be used under the terms 30 38 of the Common Development and Distribution License Version 1.0 31 (CDDL) only, as it comes in the "COPYING.CDDL" file of the32 VirtualBox OSEdistribution, in which case the provisions of the39 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 40 in the VirtualBox distribution, in which case the provisions of the 33 41 CDDL are applicable instead of those of the GPL. 34 42 35 43 You may elect to license modified versions of this file under the 36 44 terms and conditions of either the GPL or the CDDL or both. 45 46 SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 37 47 """ 38 48 __version__ = "$Revision$" -
trunk/src/VBox/ValidationKit/testmanager/batch/close_orphaned_testsets.py
r93115 r96407 12 12 __copyright__ = \ 13 13 """ 14 Copyright (C) 2012-2022 Oracle Corporation14 Copyright (C) 2012-2022 Oracle and/or its affiliates. 15 15 16 This file is part of VirtualBox Open Source Edition (OSE), as 17 available from http://www.virtualbox.org. This file is free software; 18 you can redistribute it and/or modify it under the terms of the GNU 19 General Public License (GPL) as published by the Free Software 20 Foundation, in version 2 as it comes in the "COPYING" file of the 21 VirtualBox OSE distribution. VirtualBox OSE is distributed in the 22 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 This file is part of VirtualBox base platform packages, as 17 available from https://www.virtualbox.org. 18 19 This program is free software; you can redistribute it and/or 20 modify it under the terms of the GNU General Public License 21 as published by the Free Software Foundation, in version 3 of the 22 License. 23 24 This program is distributed in the hope that it will be useful, but 25 WITHOUT ANY WARRANTY; without even the implied warranty of 26 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 27 General Public License for more details. 28 29 You should have received a copy of the GNU General Public License 30 along with this program; if not, see <https://www.gnu.org/licenses>. 23 31 24 32 The contents of this file may alternatively be used under the terms 25 33 of the Common Development and Distribution License Version 1.0 26 (CDDL) only, as it comes in the "COPYING.CDDL" file of the27 VirtualBox OSEdistribution, in which case the provisions of the34 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 35 in the VirtualBox distribution, in which case the provisions of the 28 36 CDDL are applicable instead of those of the GPL. 29 37 30 38 You may elect to license modified versions of this file under the 31 39 terms and conditions of either the GPL or the CDDL or both. 40 41 SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 32 42 """ 33 43 __version__ = "$Revision$" -
trunk/src/VBox/ValidationKit/testmanager/batch/del_build.py
r93115 r96407 13 13 __copyright__ = \ 14 14 """ 15 Copyright (C) 2012-2022 Oracle Corporation15 Copyright (C) 2012-2022 Oracle and/or its affiliates. 16 16 17 This file is part of VirtualBox Open Source Edition (OSE), as 18 available from http://www.virtualbox.org. This file is free software; 19 you can redistribute it and/or modify it under the terms of the GNU 20 General Public License (GPL) as published by the Free Software 21 Foundation, in version 2 as it comes in the "COPYING" file of the 22 VirtualBox OSE distribution. VirtualBox OSE is distributed in the 23 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 17 This file is part of VirtualBox base platform packages, as 18 available from https://www.virtualbox.org. 19 20 This program is free software; you can redistribute it and/or 21 modify it under the terms of the GNU General Public License 22 as published by the Free Software Foundation, in version 3 of the 23 License. 24 25 This program is distributed in the hope that it will be useful, but 26 WITHOUT ANY WARRANTY; without even the implied warranty of 27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 28 General Public License for more details. 29 30 You should have received a copy of the GNU General Public License 31 along with this program; if not, see <https://www.gnu.org/licenses>. 24 32 25 33 The contents of this file may alternatively be used under the terms 26 34 of the Common Development and Distribution License Version 1.0 27 (CDDL) only, as it comes in the "COPYING.CDDL" file of the28 VirtualBox OSEdistribution, in which case the provisions of the35 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 36 in the VirtualBox distribution, in which case the provisions of the 29 37 CDDL are applicable instead of those of the GPL. 30 38 31 39 You may elect to license modified versions of this file under the 32 40 terms and conditions of either the GPL or the CDDL or both. 41 42 SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 33 43 """ 34 44 __version__ = "$Revision$" -
trunk/src/VBox/ValidationKit/testmanager/batch/filearchiver.py
r94129 r96407 13 13 __copyright__ = \ 14 14 """ 15 Copyright (C) 2012-2022 Oracle Corporation 16 17 This file is part of VirtualBox Open Source Edition (OSE), as 18 available from http://www.virtualbox.org. This file is free software; 19 you can redistribute it and/or modify it under the terms of the GNU 20 General Public License (GPL) as published by the Free Software 21 Foundation, in version 2 as it comes in the "COPYING" file of the 22 VirtualBox OSE distribution. VirtualBox OSE is distributed in the 23 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 15 Copyright (C) 2012-2022 Oracle and/or its affiliates. 16 17 This file is part of VirtualBox base platform packages, as 18 available from https://www.virtualbox.org. 19 20 This program is free software; you can redistribute it and/or 21 modify it under the terms of the GNU General Public License 22 as published by the Free Software Foundation, in version 3 of the 23 License. 24 25 This program is distributed in the hope that it will be useful, but 26 WITHOUT ANY WARRANTY; without even the implied warranty of 27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 28 General Public License for more details. 29 30 You should have received a copy of the GNU General Public License 31 along with this program; if not, see <https://www.gnu.org/licenses>. 24 32 25 33 The contents of this file may alternatively be used under the terms 26 34 of the Common Development and Distribution License Version 1.0 27 (CDDL) only, as it comes in the "COPYING.CDDL" file of the28 VirtualBox OSEdistribution, in which case the provisions of the35 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 36 in the VirtualBox distribution, in which case the provisions of the 29 37 CDDL are applicable instead of those of the GPL. 30 38 31 39 You may elect to license modified versions of this file under the 32 40 terms and conditions of either the GPL or the CDDL or both. 41 42 SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 33 43 """ 34 44 __version__ = "$Revision$" -
trunk/src/VBox/ValidationKit/testmanager/batch/regen_sched_queues.py
r93115 r96407 12 12 __copyright__ = \ 13 13 """ 14 Copyright (C) 2012-2022 Oracle Corporation14 Copyright (C) 2012-2022 Oracle and/or its affiliates. 15 15 16 This file is part of VirtualBox Open Source Edition (OSE), as 17 available from http://www.virtualbox.org. This file is free software; 18 you can redistribute it and/or modify it under the terms of the GNU 19 General Public License (GPL) as published by the Free Software 20 Foundation, in version 2 as it comes in the "COPYING" file of the 21 VirtualBox OSE distribution. VirtualBox OSE is distributed in the 22 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 This file is part of VirtualBox base platform packages, as 17 available from https://www.virtualbox.org. 18 19 This program is free software; you can redistribute it and/or 20 modify it under the terms of the GNU General Public License 21 as published by the Free Software Foundation, in version 3 of the 22 License. 23 24 This program is distributed in the hope that it will be useful, but 25 WITHOUT ANY WARRANTY; without even the implied warranty of 26 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 27 General Public License for more details. 28 29 You should have received a copy of the GNU General Public License 30 along with this program; if not, see <https://www.gnu.org/licenses>. 23 31 24 32 The contents of this file may alternatively be used under the terms 25 33 of the Common Development and Distribution License Version 1.0 26 (CDDL) only, as it comes in the "COPYING.CDDL" file of the27 VirtualBox OSEdistribution, in which case the provisions of the34 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 35 in the VirtualBox distribution, in which case the provisions of the 28 36 CDDL are applicable instead of those of the GPL. 29 37 30 38 You may elect to license modified versions of this file under the 31 39 terms and conditions of either the GPL or the CDDL or both. 40 41 SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 32 42 """ 33 43 __version__ = "$Revision$" -
trunk/src/VBox/ValidationKit/testmanager/batch/vcs_import.py
r94129 r96407 11 11 __copyright__ = \ 12 12 """ 13 Copyright (C) 2012-2022 Oracle Corporation 14 15 This file is part of VirtualBox Open Source Edition (OSE), as 16 available from http://www.virtualbox.org. This file is free software; 17 you can redistribute it and/or modify it under the terms of the GNU 18 General Public License (GPL) as published by the Free Software 19 Foundation, in version 2 as it comes in the "COPYING" file of the 20 VirtualBox OSE distribution. VirtualBox OSE is distributed in the 21 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 13 Copyright (C) 2012-2022 Oracle and/or its affiliates. 14 15 This file is part of VirtualBox base platform packages, as 16 available from https://www.virtualbox.org. 17 18 This program is free software; you can redistribute it and/or 19 modify it under the terms of the GNU General Public License 20 as published by the Free Software Foundation, in version 3 of the 21 License. 22 23 This program is distributed in the hope that it will be useful, but 24 WITHOUT ANY WARRANTY; without even the implied warranty of 25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 26 General Public License for more details. 27 28 You should have received a copy of the GNU General Public License 29 along with this program; if not, see <https://www.gnu.org/licenses>. 22 30 23 31 The contents of this file may alternatively be used under the terms 24 32 of the Common Development and Distribution License Version 1.0 25 (CDDL) only, as it comes in the "COPYING.CDDL" file of the26 VirtualBox OSEdistribution, in which case the provisions of the33 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 34 in the VirtualBox distribution, in which case the provisions of the 27 35 CDDL are applicable instead of those of the GPL. 28 36 29 37 You may elect to license modified versions of this file under the 30 38 terms and conditions of either the GPL or the CDDL or both. 39 40 SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 31 41 """ 32 42 __version__ = "$Revision$" -
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r94129 r96407 17 17 __copyright__ = \ 18 18 """ 19 Copyright (C) 2012-2022 Oracle Corporation 20 21 This file is part of VirtualBox Open Source Edition (OSE), as 22 available from http://www.virtualbox.org. This file is free software; 23 you can redistribute it and/or modify it under the terms of the GNU 24 General Public License (GPL) as published by the Free Software 25 Foundation, in version 2 as it comes in the "COPYING" file of the 26 VirtualBox OSE distribution. VirtualBox OSE is distributed in the 27 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 19 Copyright (C) 2012-2022 Oracle and/or its affiliates. 20 21 This file is part of VirtualBox base platform packages, as 22 available from https://www.virtualbox.org. 23 24 This program is free software; you can redistribute it and/or 25 modify it under the terms of the GNU General Public License 26 as published by the Free Software Foundation, in version 3 of the 27 License. 28 29 This program is distributed in the hope that it will be useful, but 30 WITHOUT ANY WARRANTY; without even the implied warranty of 31 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 32 General Public License for more details. 33 34 You should have received a copy of the GNU General Public License 35 along with this program; if not, see <https://www.gnu.org/licenses>. 28 36 29 37 The contents of this file may alternatively be used under the terms 30 38 of the Common Development and Distribution License Version 1.0 31 (CDDL) only, as it comes in the "COPYING.CDDL" file of the32 VirtualBox OSEdistribution, in which case the provisions of the39 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 40 in the VirtualBox distribution, in which case the provisions of the 33 41 CDDL are applicable instead of those of the GPL. 34 42 35 43 You may elect to license modified versions of this file under the 36 44 terms and conditions of either the GPL or the CDDL or both. 45 46 SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 37 47 """ 38 48 __version__ = "$Revision$"
Note:
See TracChangeset
for help on using the changeset viewer.