All of lore.kernel.org
 help / color / mirror / Atom feed
* [OSSTEST PATCH v3 00/25] Integrate XTF into OSSTest
@ 2016-09-06 13:09 Wei Liu
  2016-09-06 13:09 ` [OSSTEST PATCH v3 01/25] Executive: Previous duration estimator: use overall time, not sum of steps Wei Liu
                   ` (24 more replies)
  0 siblings, 25 replies; 43+ messages in thread
From: Wei Liu @ 2016-09-06 13:09 UTC (permalink / raw)
  To: Xen-devel; +Cc: ian.jackson, Wei Liu, andrew.cooper3

Hi all

This patch series integrates XTF into OSSTest. All the prerequisites have been
met, so this is no longer RFC.

Please see (currently Citrix only):

http://osstest.xs.citrite.net/~osstest/testlogs/logs/67651/

I'm going to run the same series a few more times to verify some assumptions.

Wei.

Ian Jackson (12):
  Executive: Previous duration estimator: use overall time, not sum of
    steps
  ts-hosts-allocate-Executive: Replace some odd commas with semicolons
  sg-run-job: Add emacs mode comment
  step status skip: Ignore in cs-bisection-step
  step status skip: Ignore in report_run_getinfo
  step status skip: Implement in sg-report-flight
  ts-hosts-allocate-Executive: pass $plan to hid_find_possibilities
  ts-hosts-allocate-Executive: Support diverse-CLASS hostflag
  DO NOT APPLY make-flight-diverse-test: test case for diverse-CLASS
    hostflag
  Executive: Support substeps
  DO NOT APPLY make-flight-substep-test
  DO NOT APPLY provide ts-substep-test

Wei Liu (13):
  ts-xen-build: always compile in FEP support
  ap-common: add xtf tree
  DO NOT APPLY point xtf to my personal tree
  BuildSupport: move buildcmd_stamped_logged here
  Introduce ts-xtf-build
  sg-run-job: create xtf build recipe
  Introduce ts-xtf-install
  mfi-common: create xtf build job for 4.4 onwards
  Introduce ts-xtf-fep
  Introduce ts-xtf-run
  sg-run-job: test-xtf recipe
  make-flight: create 5 xtf jobs
  Create XTF branch

 Osstest/BuildSupport.pm     |  15 ++++++
 Osstest/Executive.pm        |   3 +-
 Osstest/JobDB/Executive.pm  |  51 +++++++++++++++++++
 Osstest/JobDB/Standalone.pm |  10 ++++
 Osstest/TestSupport.pm      |  11 +++++
 README.planner              |   3 ++
 ap-common                   |   4 ++
 ap-fetch-version            |   4 ++
 ap-print-url                |   3 ++
 ap-push                     |   5 ++
 cr-daily-branch             |   7 +++
 cr-for-branches             |   2 +-
 cri-common                  |   1 +
 cs-bisection-step           |   1 +
 make-flight                 |  40 +++++++++++++++
 make-flight-diverse-test    |  11 +++++
 make-flight-substep-test    |  14 ++++++
 mfi-common                  |  25 ++++++++++
 sg-report-flight            |   6 ++-
 sg-run-job                  |  29 +++++++++++
 tcl/JobDB-Executive.tcl     |  32 ++++++++++++
 tcl/JobDB-Standalone.tcl    |   2 +
 ts-hosts-allocate-Executive |  69 +++++++++++++++++++++++---
 ts-substep-test             |  38 +++++++++++++++
 ts-xen-build                |  27 ++++-------
 ts-xtf-build                |  54 +++++++++++++++++++++
 ts-xtf-fep                  |  41 ++++++++++++++++
 ts-xtf-install              |  37 ++++++++++++++
 ts-xtf-run                  | 116 ++++++++++++++++++++++++++++++++++++++++++++
 29 files changed, 632 insertions(+), 29 deletions(-)
 create mode 100755 make-flight-diverse-test
 create mode 100755 make-flight-substep-test
 create mode 100755 ts-substep-test
 create mode 100755 ts-xtf-build
 create mode 100755 ts-xtf-fep
 create mode 100755 ts-xtf-install
 create mode 100755 ts-xtf-run

-- 
2.1.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 43+ messages in thread

end of thread, other threads:[~2016-09-09 10:09 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-06 13:09 [OSSTEST PATCH v3 00/25] Integrate XTF into OSSTest Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 01/25] Executive: Previous duration estimator: use overall time, not sum of steps Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 02/25] ts-hosts-allocate-Executive: Replace some odd commas with semicolons Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 03/25] sg-run-job: Add emacs mode comment Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 04/25] step status skip: Ignore in cs-bisection-step Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 05/25] step status skip: Ignore in report_run_getinfo Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 06/25] step status skip: Implement in sg-report-flight Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 07/25] ts-hosts-allocate-Executive: pass $plan to hid_find_possibilities Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 08/25] ts-hosts-allocate-Executive: Support diverse-CLASS hostflag Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 09/25] DO NOT APPLY make-flight-diverse-test: test case for " Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 10/25] Executive: Support substeps Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 11/25] DO NOT APPLY make-flight-substep-test Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 12/25] DO NOT APPLY provide ts-substep-test Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 13/25] ts-xen-build: always compile in FEP support Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 14/25] ap-common: add xtf tree Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 15/25] DO NOT APPLY point xtf to my personal tree Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 16/25] BuildSupport: move buildcmd_stamped_logged here Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 17/25] Introduce ts-xtf-build Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 18/25] sg-run-job: create xtf build recipe Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 19/25] Introduce ts-xtf-install Wei Liu
2016-09-06 14:01   ` Ian Jackson
2016-09-06 13:09 ` [OSSTEST PATCH v3 20/25] mfi-common: create xtf build job for 4.4 onwards Wei Liu
2016-09-06 14:06   ` Ian Jackson
2016-09-08 17:00     ` Wei Liu
2016-09-08 17:41       ` Ian Jackson
2016-09-08 18:11         ` Wei Liu
2016-09-09 10:09           ` Ian Jackson
2016-09-06 13:09 ` [OSSTEST PATCH v3 21/25] Introduce ts-xtf-fep Wei Liu
2016-09-06 14:07   ` Ian Jackson
2016-09-06 13:09 ` [OSSTEST PATCH v3 22/25] Introduce ts-xtf-run Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 23/25] sg-run-job: test-xtf recipe Wei Liu
2016-09-06 13:09 ` [OSSTEST PATCH v3 24/25] make-flight: create 5 xtf jobs Wei Liu
2016-09-08 17:01   ` Wei Liu
2016-09-08 17:41     ` Ian Jackson
2016-09-06 13:09 ` [OSSTEST PATCH v3 25/25] Create XTF branch Wei Liu
2016-09-06 14:03   ` Ian Jackson
2016-09-06 19:16     ` Wei Liu
2016-09-08 14:47       ` Ian Jackson
2016-09-08 17:07         ` Wei Liu
2016-09-08 17:45           ` Ian Jackson
2016-09-08 18:07             ` Wei Liu
2016-09-09 10:04               ` Ian Jackson
2016-09-06 19:14   ` Wei Liu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.