All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] ltp: Upgrade LTP to 20120401
@ 2012-05-24  9:15 Jiajun Xu
  2012-05-24  9:16 ` [PATCH 1/2] ltp: Upgrade LTP to version 20120401 Jiajun Xu
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jiajun Xu @ 2012-05-24  9:15 UTC (permalink / raw)
  To: openembedded-core

Upgrade LTP to 20120401 and remove the patch for getcontext and profil,
since LTP has fixed the build issue.


The following changes since commit e6333825c3482a559a0c0499e17f8f48d3042ddf:

  tune-mips64.inc: Add new tune file for mips64 big-endian (2012-05-20 20:24:37 -0700)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib jxu49/oe-contrib
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jxu49/oe-contrib

Jiajun Xu (2):
  ltp: Upgrade LTP to version 20120401
  distro_tracking_fields: update information for ltp

 .../conf/distro/include/distro_tracking_fields.inc |    8 +-
 .../ltp/ltp/uclibc-getcontext.patch                |   78 --------------------
 .../ltp/{ltp_20120104.bb => ltp_20120401.bb}       |    7 +-
 3 files changed, 7 insertions(+), 86 deletions(-)
 delete mode 100644 meta/recipes-extended/ltp/ltp/uclibc-getcontext.patch
 rename meta/recipes-extended/ltp/{ltp_20120104.bb => ltp_20120401.bb} (95%)




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

* [PATCH 1/2] ltp: Upgrade LTP to version 20120401
  2012-05-24  9:15 [PATCH 0/2] ltp: Upgrade LTP to 20120401 Jiajun Xu
@ 2012-05-24  9:16 ` Jiajun Xu
  2012-05-24  9:16 ` [PATCH 2/2] distro_tracking_fields: update information for ltp Jiajun Xu
  2012-05-25 16:38 ` [PATCH 0/2] ltp: Upgrade LTP to 20120401 Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Jiajun Xu @ 2012-05-24  9:16 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Jiajun Xu <jiajun.xu@intel.com>
---
 .../ltp/ltp/uclibc-getcontext.patch                |   78 --------------------
 .../ltp/{ltp_20120104.bb => ltp_20120401.bb}       |    7 +-
 2 files changed, 3 insertions(+), 82 deletions(-)
 delete mode 100644 meta/recipes-extended/ltp/ltp/uclibc-getcontext.patch
 rename meta/recipes-extended/ltp/{ltp_20120104.bb => ltp_20120401.bb} (95%)

diff --git a/meta/recipes-extended/ltp/ltp/uclibc-getcontext.patch b/meta/recipes-extended/ltp/ltp/uclibc-getcontext.patch
deleted file mode 100644
index 310e2d4..0000000
--- a/meta/recipes-extended/ltp/ltp/uclibc-getcontext.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-Fix building disabled getcontext and profil01 tests for uclibc
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
-
-Index: ltp-20110915/testcases/kernel/syscalls/getcontext/getcontext01.c
-===================================================================
---- ltp-20110915.orig/testcases/kernel/syscalls/getcontext/getcontext01.c	2012-01-19 16:39:24.391012507 -0800
-+++ ltp-20110915/testcases/kernel/syscalls/getcontext/getcontext01.c	2012-01-19 16:39:24.459012510 -0800
-@@ -34,6 +34,10 @@
-  **********************************************************/
- 
- #include <features.h>
-+#include "test.h"
-+#include "usctest.h"
-+char *TCID = "getcontext01";	/* Test program identifier.    */
-+
- #if !defined(__UCLIBC__)
- 
- #include <stdio.h>
-@@ -41,13 +45,9 @@
- #include <errno.h>
- #include <ucontext.h>
- 
--#include "test.h"
--#include "usctest.h"
--
- void setup();
- void cleanup();
- 
--char *TCID = "getcontext01";	/* Test program identifier.    */
- int TST_TOTAL = 1;		/* Total number of test cases. */
- 
- int exp_enos[] = { 0 };		/* must be a 0 terminated list */
-@@ -102,4 +102,4 @@
- {
- 	tst_brkm(TCONF, NULL, "system doesn't have getcontext support");
- }
--#endif
-\ No newline at end of file
-+#endif
-Index: ltp-20110915/testcases/kernel/syscalls/profil/profil01.c
-===================================================================
---- ltp-20110915.orig/testcases/kernel/syscalls/profil/profil01.c	2012-01-19 16:39:55.975014036 -0800
-+++ ltp-20110915/testcases/kernel/syscalls/profil/profil01.c	2012-01-19 16:40:23.475015322 -0800
-@@ -41,6 +41,8 @@
- #endif
- 
- #include <features.h>
-+#include "test.h"
-+char *TCID = "profil01";
- #ifndef __UCLIBC__
- 
- #ifdef __arm__
-@@ -58,7 +60,6 @@
- #include <errno.h>
- #include <sys/types.h>
- #include <sys/wait.h>
--#include "test.h"
- #include "usctest.h"
- #define FAILED 0
- #define PASSED 1
-@@ -73,7 +74,6 @@
- //char progname[]= "profil1()";
- 
- /*****	LTP Port	*****/
--char *TCID = "profil01";
- int local_flag = PASSED;
- int block_number;
- FILE *temp;
-@@ -310,4 +310,4 @@
- 	/* uClibc does not have profiling support */
- 	tst_exit();
- }
--#endif
-\ No newline at end of file
-+#endif
diff --git a/meta/recipes-extended/ltp/ltp_20120104.bb b/meta/recipes-extended/ltp/ltp_20120401.bb
similarity index 95%
rename from meta/recipes-extended/ltp/ltp_20120104.bb
rename to meta/recipes-extended/ltp/ltp_20120401.bb
index c82203a..821d9e4 100644
--- a/meta/recipes-extended/ltp/ltp_20120104.bb
+++ b/meta/recipes-extended/ltp/ltp_20120401.bb
@@ -19,14 +19,13 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
 		    file://utils/benchmark/kernbench-0.42/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
 		"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/ltp/ltp-full-${PV}.bz2 \
-           file://uclibc-getcontext.patch \
           "
 
-SRC_URI[md5sum] = "ac183bbdac67139f049b3755fda37179"
-SRC_URI[sha256sum] = "11b149b821d709e3351ac66f028f1b0dd5337ee9073dc20019ccffdac42d5c2e"
+SRC_URI[md5sum] = "e1d0acf1a6b6da0cb30dc1b0dcf5f26d"
+SRC_URI[sha256sum] = "f0f5845f9666f61332fdf0b7e396fc647f9372db0902a829af2cf9402b807bd1"
 
 export prefix = "/opt/ltp"
 export exec_prefix = "/opt/ltp"
-- 
1.7.1




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

* [PATCH 2/2] distro_tracking_fields: update information for ltp
  2012-05-24  9:15 [PATCH 0/2] ltp: Upgrade LTP to 20120401 Jiajun Xu
  2012-05-24  9:16 ` [PATCH 1/2] ltp: Upgrade LTP to version 20120401 Jiajun Xu
@ 2012-05-24  9:16 ` Jiajun Xu
  2012-05-25 16:38 ` [PATCH 0/2] ltp: Upgrade LTP to 20120401 Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Jiajun Xu @ 2012-05-24  9:16 UTC (permalink / raw)
  To: openembedded-core

Update information for recipe ltp 20120401

Signed-off-by: Jiajun Xu <jiajun.xu@intel.com>
---
 .../conf/distro/include/distro_tracking_fields.inc |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index 8b8eeaa..518fc7f 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -6438,12 +6438,12 @@ RECIPE_MAINTAINER_pn-socat = "Saul Wold <sgw@linux.intel.com>"
 RECIPE_NO_UPDATE_REASON_pn-socat = "2.0.0 is beta"
 
 RECIPE_STATUS_pn-ltp = "green"
-RECIPE_LATEST_VERSION_pn-ltp = "20110915"
-RECIPE_LATEST_RELEASE_DATE_pn-ltp = "Sep 15, 2011"
+RECIPE_LATEST_VERSION_pn-ltp = "20120401"
+RECIPE_LATEST_RELEASE_DATE_pn-ltp = "Apr 01, 2012"
 RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-ltp = "3 months"
 RECIPE_NO_OF_PATCHES_pn-ltp = "0"
-RECIPE_LAST_UPDATE_pn-ltp = "Dec 22, 2011"
-RECIPE_MANUAL_CHECK_DATE_pn-ltp = "Mar 13, 2012"
+RECIPE_LAST_UPDATE_pn-ltp = "May 24, 2012"
+RECIPE_MANUAL_CHECK_DATE_pn-ltp = "May 24, 2012"
 RECIPE_MAINTAINER_pn-ltp = "Jiajun Xu <jiajun.xu@intel.com>"
 DISTRO_PN_ALIAS_pn-ltp = "Ubuntu=ltp"
 
-- 
1.7.1




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

* Re: [PATCH 0/2] ltp: Upgrade LTP to 20120401
  2012-05-24  9:15 [PATCH 0/2] ltp: Upgrade LTP to 20120401 Jiajun Xu
  2012-05-24  9:16 ` [PATCH 1/2] ltp: Upgrade LTP to version 20120401 Jiajun Xu
  2012-05-24  9:16 ` [PATCH 2/2] distro_tracking_fields: update information for ltp Jiajun Xu
@ 2012-05-25 16:38 ` Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-05-25 16:38 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 05/24/2012 02:15 AM, Jiajun Xu wrote:
> Upgrade LTP to 20120401 and remove the patch for getcontext and profil,
> since LTP has fixed the build issue.
>
>
> The following changes since commit e6333825c3482a559a0c0499e17f8f48d3042ddf:
>
>    tune-mips64.inc: Add new tune file for mips64 big-endian (2012-05-20 20:24:37 -0700)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib jxu49/oe-contrib
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jxu49/oe-contrib
>
> Jiajun Xu (2):
>    ltp: Upgrade LTP to version 20120401
>    distro_tracking_fields: update information for ltp
>
>   .../conf/distro/include/distro_tracking_fields.inc |    8 +-
>   .../ltp/ltp/uclibc-getcontext.patch                |   78 --------------------
>   .../ltp/{ltp_20120104.bb =>  ltp_20120401.bb}       |    7 +-
>   3 files changed, 7 insertions(+), 86 deletions(-)
>   delete mode 100644 meta/recipes-extended/ltp/ltp/uclibc-getcontext.patch
>   rename meta/recipes-extended/ltp/{ltp_20120104.bb =>  ltp_20120401.bb} (95%)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
>
Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2012-05-25 16:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-24  9:15 [PATCH 0/2] ltp: Upgrade LTP to 20120401 Jiajun Xu
2012-05-24  9:16 ` [PATCH 1/2] ltp: Upgrade LTP to version 20120401 Jiajun Xu
2012-05-24  9:16 ` [PATCH 2/2] distro_tracking_fields: update information for ltp Jiajun Xu
2012-05-25 16:38 ` [PATCH 0/2] ltp: Upgrade LTP to 20120401 Saul Wold

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.