Overview
Comment: | tweaks to bigrun test |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | dev |
Files: | files | file ages | folders |
SHA1: |
567e18494f2886a96fcd61198b03d1bf |
User & Date: | mrwellan on 2013-07-01 14:09:07 |
Other Links: | branch diff | manifest | tags |
Context
2013-07-01
| ||
17:17 | Refactored dashboard interface to add a general info view check-in: 488a7a26c7 user: mrwellan tags: dev | |
14:09 | tweaks to bigrun test check-in: 567e18494f user: mrwellan tags: dev | |
2013-06-28
| ||
01:05 | Merged v1.55 changes into development check-in: e179e9c7b6 user: matt tags: dev | |
Changes
Modified dashboard.scm from [bcb9c3f528] to [da7c20face].
︙ | ︙ | |||
38 39 40 41 42 43 44 | (include "common_records.scm") (include "db_records.scm") (include "run_records.scm") (define help (conc "Megatest Dashboard, documentation at http://www.kiatoa.com/fossils/megatest version " megatest-version " | | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | (include "common_records.scm") (include "db_records.scm") (include "run_records.scm") (define help (conc "Megatest Dashboard, documentation at http://www.kiatoa.com/fossils/megatest version " megatest-version " license GPL, Copyright (C) Matt Welland 2013 Usage: dashboard [options] -h : this help -server host:port : connect to host:port instead of db access -test testid : control test identified by testid -guimonitor : control panel for runs |
︙ | ︙ |
Modified tests/fdktestqa/testqa/Makefile from [958bbaad3d] to [7ce2c42a50].
1 2 3 4 5 6 7 8 9 10 11 12 | BINDIR = $(PWD)/../../../bin PATH := $(BINDIR):$(PATH) MEGATEST = $(BINDIR)/megatest DASHBOARD = $(BINDIR)/dashboard all : $(MEGATEST) -runtests % -target a/b :runname c bigbig : for tn in a b c d;do \ ($(MEGATEST) -runtests % -target a/b :runname $tn & ) ; \ done | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | BINDIR = $(PWD)/../../../bin PATH := $(BINDIR):$(PATH) MEGATEST = $(BINDIR)/megatest DASHBOARD = $(BINDIR)/dashboard all : $(MEGATEST) -remove-runs -target a/b :runname c -testpatt %/% $(MEGATEST) -runtests % -target a/b :runname c bigbig : for tn in a b c d;do \ ($(MEGATEST) -runtests % -target a/b :runname $tn & ) ; \ done |
︙ | ︙ |
Modified tests/fdktestqa/testqa/tests/bigrun/testconfig from [cdfa932657] to [8547ca9c55].
1 2 3 4 5 6 7 8 9 10 11 | # Add additional steps here. Format is "stepname script" [ezsteps] step1 step1.sh # Test requirements are specified here [requirements] # waiton setup priority 0 # Iteration for your tests are controlled by the items section [items] | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Add additional steps here. Format is "stepname script" [ezsteps] step1 step1.sh # Test requirements are specified here [requirements] # waiton setup priority 0 # Iteration for your tests are controlled by the items section [items] NUMBER #{scheme (string-intersperse (map number->string (sort (let loop ((a 0)(res '()))(if (<= a (or (any->number (get-environment-variable "NUMTESTS")) 2500))(loop (+ a 1)(cons a res)) res)) >)) " ")} # test_meta is a section for storing additional data on your test [test_meta] author matt owner matt description An example test tags tagone,tagtwo |
︙ | ︙ |