Changeset 69778 in vbox for trunk/src/VBox/ValidationKit/testmanager
- Timestamp:
- Nov 20, 2017 5:57:01 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119182
- Location:
- trunk/src/VBox/ValidationKit/testmanager/db
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/TestManagerDatabaseComments.pgsql
r69777 r69778 4 4 -- 5 5 6 -- 6 -- 7 7 -- Copyright (C) 2012-2017 Oracle Corporation 8 -- 8 -- 9 9 -- This file is part of VirtualBox Open Source Edition (OSE), as 10 10 -- available from http://www.virtualbox.org. This file is free software; … … 14 14 -- VirtualBox OSE distribution. VirtualBox OSE is distributed in the 15 15 -- hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 -- 16 -- 17 17 -- The contents of this file may alternatively be used under the terms 18 18 -- of the Common Development and Distribution License Version 1.0 … … 20 20 -- VirtualBox OSE distribution, in which case the provisions of the 21 21 -- CDDL are applicable instead of those of the GPL. 22 -- 22 -- 23 23 -- You may elect to license modified versions of this file under the 24 24 -- terms and conditions of either the GPL or the CDDL or both. 25 -- 25 -- 26 26 27 27 -
trunk/src/VBox/ValidationKit/testmanager/db/gen-sql-comments.py
r69448 r69778 214 214 print(""); 215 215 for sLine in __copyright__.split('\n'): 216 print("-- %s" % (sLine,)); 216 if len(sLine) > 0: 217 print("-- %s" % (sLine,)); 218 else: 219 print("--"); 217 220 print(""); 218 221 print("");
Note:
See TracChangeset
for help on using the changeset viewer.