VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/td-dummy.py@ 57358

Last change on this file since 57358 was 56295, checked in by vboxsync, 9 years ago

ValidationKit: Updated (C) year.

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4"""
5Copyright (C) 2010-2015 Oracle Corporation
6
7This file is part of VirtualBox Open Source Edition (OSE), as
8available from http://www.virtualbox.org. This file is free software;
9you can redistribute it and/or modify it under the terms of the GNU
10General Public License (GPL) as published by the Free Software
11Foundation, in version 2 as it comes in the "COPYING" file of the
12VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14
15The contents of this file may alternatively be used under the terms
16of the Common Development and Distribution License Version 1.0
17(CDDL) only, as it comes in the "COPYING.CDDL" file of the
18VirtualBox OSE distribution, in which case the provisions of the
19CDDL are applicable instead of those of the GPL.
20
21You may elect to license modified versions of this file under the
22terms and conditions of either the GPL or the CDDL or both.
23"""
24
25__version__ = "$Id: td-dummy.py 56295 2015-06-09 14:29:55Z vboxsync $"
26
27import sys
28sys.path.insert(0, "../");
29import testdriver.reporter as reporter
30import testdriver.vbox
31
32
33class DummyTestDriver(testdriver.vbox.TestDriver):
34 """
35 Dummy Test driver for testing the package layout.
36 """
37
38 def __init__(self):
39 testdriver.vbox.TestDriver.__init__(self);
40 self.dummy = 1;
41
42 def main(self):
43 print "works";
44 reporter.log("the reporter works")
45 self.dump();
46 return 0;
47
48
49td = DummyTestDriver();
50sys.exit(td.main());
51
Note: See TracBrowser for help on using the repository browser.

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