1 | #!/usr/bin/env python
|
---|
2 | # -*- coding: utf-8 -*-
|
---|
3 | # $Id: tdSelfTest1.py 86439 2020-10-04 11:36:59Z vboxsync $
|
---|
4 |
|
---|
5 | """
|
---|
6 | Test Manager Self Test - Dummy Test Driver.
|
---|
7 | """
|
---|
8 |
|
---|
9 | __copyright__ = \
|
---|
10 | """
|
---|
11 | Copyright (C) 2012-2020 Oracle Corporation
|
---|
12 |
|
---|
13 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
14 | available from http://www.virtualbox.org. This file is free software;
|
---|
15 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
16 | General Public License (GPL) as published by the Free Software
|
---|
17 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
18 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
19 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
20 |
|
---|
21 | The contents of this file may alternatively be used under the terms
|
---|
22 | of the Common Development and Distribution License Version 1.0
|
---|
23 | (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
24 | VirtualBox OSE distribution, in which case the provisions of the
|
---|
25 | CDDL are applicable instead of those of the GPL.
|
---|
26 |
|
---|
27 | You may elect to license modified versions of this file under the
|
---|
28 | terms and conditions of either the GPL or the CDDL or both.
|
---|
29 | """
|
---|
30 | __version__ = "$Revision: 86439 $"
|
---|
31 |
|
---|
32 |
|
---|
33 | import sys;
|
---|
34 | import os;
|
---|
35 |
|
---|
36 | print('dummydriver.py: hello world!');
|
---|
37 | print('dummydriver.py: args: %s' % (sys.argv,));
|
---|
38 |
|
---|
39 | print('dummydriver.py: environment:')
|
---|
40 | for sVar in sorted(os.environ.keys()):
|
---|
41 | print('%s=%s' % (sVar, os.environ[sVar]));
|
---|
42 |
|
---|
43 | if sys.argv[-1] in [ 'all', 'execute' ]:
|
---|
44 |
|
---|
45 | import time;
|
---|
46 |
|
---|
47 | for i in range(10, 1, -1):
|
---|
48 | print('dummydriver.py: %u...', i);
|
---|
49 | sys.stdout.flush();
|
---|
50 | time.sleep(1);
|
---|
51 | print('dummydriver.py: ...0! done');
|
---|
52 |
|
---|
53 | sys.exit(0);
|
---|
54 |
|
---|