Changeset 61408 in vbox
- Timestamp:
- Jun 2, 2016 11:59:18 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107724
- Location:
- trunk/src/VBox/ValidationKit/testmanager/db
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/Makefile.kmk
r61217 r61408 28 28 # Need proper shell on windows. 29 29 DEPTH = ../../../../.. 30 #include $(KBUILD_PATH)/header.kmk 30 ifneq ($(wildcard $(DEPTH)/Config.kmk),) 31 include $(KBUILD_PATH)/header.kmk 32 else 33 VBOX_BLD_PYTHON ?= python 34 endif 31 35 32 36 33 37 GENERATED_FILES = TestManagerDatabaseComments.pgsql 34 PSQL := $(firstword $(which $(foreach pgver, 9 2 91 90,psql$(pgver)) ) psql)38 PSQL := $(firstword $(which $(foreach pgver, 95 94 93 92,psql$(pgver)) ) psql) 35 39 PSQL_OPTS = -U postgres 36 40 -
trunk/src/VBox/ValidationKit/testmanager/db/TestManagerDatabaseComments.pgsql
r61180 r61408 321 321 322 322 323 COMMENT ON COLUMN TestCaseArgs.sSubName IS 324 'Optional variation sub-name.'; 325 326 323 327 COMMENT ON INDEX TestCaseArgsLookupIdx IS 324 328 'The arguments are part of the primary key for several reasons.
Note:
See TracChangeset
for help on using the changeset viewer.