VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/common/constants/rtexitcode.py@ 82652

Last change on this file since 82652 was 80237, checked in by vboxsync, 6 years ago

ValKit/vboxinstaller.py,++: Hack for letting vboxinstaller report a 'bad testbox' status rather than a simple 'skipped' so vsheriff can more easily spot the problem with stuck drivers.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1# -*- coding: utf-8 -*-
2# $Id: rtexitcode.py 80237 2019-08-12 21:16:08Z vboxsync $
3
4"""
5RTEXITCODE from iprt/types.h.
6"""
7
8__copyright__ = \
9"""
10Copyright (C) 2012-2019 Oracle Corporation
11
12This file is part of VirtualBox Open Source Edition (OSE), as
13available from http://www.virtualbox.org. This file is free software;
14you can redistribute it and/or modify it under the terms of the GNU
15General Public License (GPL) as published by the Free Software
16Foundation, in version 2 as it comes in the "COPYING" file of the
17VirtualBox OSE distribution. VirtualBox OSE is distributed in the
18hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
19
20The contents of this file may alternatively be used under the terms
21of the Common Development and Distribution License Version 1.0
22(CDDL) only, as it comes in the "COPYING.CDDL" file of the
23VirtualBox OSE distribution, in which case the provisions of the
24CDDL are applicable instead of those of the GPL.
25
26You may elect to license modified versions of this file under the
27terms and conditions of either the GPL or the CDDL or both.
28"""
29__version__ = "$Revision: 80237 $"
30
31
32## Success.
33RTEXITCODE_SUCCESS = 0;
34SUCCESS = RTEXITCODE_SUCCESS;
35## General failure.
36RTEXITCODE_FAILURE = 1;
37FAILURE = RTEXITCODE_FAILURE;
38## Invalid arguments.
39RTEXITCODE_SYNTAX = 2;
40SYNTAX = RTEXITCODE_SYNTAX;
41## Initialization failure.
42RTEXITCODE_INIT = 3;
43INIT = RTEXITCODE_INIT;
44## Test skipped.
45RTEXITCODE_SKIPPED = 4;
46SKIPPED = RTEXITCODE_SKIPPED;
47## Bad-testbox.
48RTEXITCODE_BAD_TESTBOX = 32;
49## Bad-testbox.
50BAD_TESTBOX = RTEXITCODE_BAD_TESTBOX;
51
Note: See TracBrowser for help on using the repository browser.

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