From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mail.openembedded.org (Postfix) with ESMTP id 34D807C05B for ; Tue, 22 Jan 2019 10:13:24 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Jan 2019 02:13:26 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,505,1539673200"; d="scan'208";a="111696319" Received: from andromeda02.png.intel.com ([10.221.183.11]) by orsmga008.jf.intel.com with ESMTP; 22 Jan 2019 02:13:25 -0800 From: Yeoh Ee Peng To: openembedded-core@lists.openembedded.org Date: Tue, 22 Jan 2019 17:42:09 +0800 Message-Id: <1548150131-65036-1-git-send-email-ee.peng.yeoh@intel.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Subject: [PATCH 0/2 v5] test-case-mgmt X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jan 2019 10:13:25 -0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v1: Face key error from oe-git-archive Undesirable behavior when storing to multiple git branch v2: Include fix for oe-git-archive Include fix for store result to multiple git branch Improve git commit message v3: Enhance fix for oe-git-archive by using exception catch to improve code readability and easy to understand v4: Add new features, merge result files & regression analysis Add selftest to merge, store, report and regression functionalities Revise codebase for pythonic v5: Add required files for selftest testing store Mazliana (1): scripts/resultstool: enable manual execution and result creation Yeoh Ee Peng (1): resultstool: enable merge, store, report and regression analysis meta/lib/oeqa/files/testresults/testresults.json | 40 ++++++ meta/lib/oeqa/selftest/cases/resultstooltests.py | 104 ++++++++++++++++ scripts/lib/resultstool/__init__.py | 0 scripts/lib/resultstool/manualexecution.py | 137 +++++++++++++++++++++ scripts/lib/resultstool/merge.py | 71 +++++++++++ scripts/lib/resultstool/regression.py | 134 ++++++++++++++++++++ scripts/lib/resultstool/report.py | 122 ++++++++++++++++++ scripts/lib/resultstool/resultsutils.py | 47 +++++++ scripts/lib/resultstool/store.py | 110 +++++++++++++++++ .../resultstool/template/test_report_full_text.txt | 35 ++++++ scripts/resultstool | 92 ++++++++++++++ 11 files changed, 892 insertions(+) create mode 100644 meta/lib/oeqa/files/testresults/testresults.json create mode 100644 meta/lib/oeqa/selftest/cases/resultstooltests.py create mode 100644 scripts/lib/resultstool/__init__.py create mode 100644 scripts/lib/resultstool/manualexecution.py create mode 100644 scripts/lib/resultstool/merge.py create mode 100644 scripts/lib/resultstool/regression.py create mode 100644 scripts/lib/resultstool/report.py create mode 100644 scripts/lib/resultstool/resultsutils.py create mode 100644 scripts/lib/resultstool/store.py create mode 100644 scripts/lib/resultstool/template/test_report_full_text.txt create mode 100755 scripts/resultstool -- 2.7.4