All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Add sanity test scenarios for -lsb images
  2010-12-07  8:50 [PATCH 0/2] Add sanity scenarios for -lsb images Scott Garman
@ 2010-12-07  8:48 ` Scott Garman
  2010-12-07  8:48 ` [PATCH 2/2] Remove unused tunctl-src/Makefile from scripts/ Scott Garman
  2010-12-07 11:56 ` [PATCH 0/2] Add sanity scenarios for -lsb images Richard Purdie
  2 siblings, 0 replies; 4+ messages in thread
From: Scott Garman @ 2010-12-07  8:48 UTC (permalink / raw)
  To: poky

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
---
 .../scenario/qemuarm/poky-image-lsb                |    5 +++++
 .../scenario/qemumips/poky-image-lsb               |    5 +++++
 .../scenario/qemuppc/poky-image-lsb                |    5 +++++
 .../scenario/qemux86-64/poky-image-lsb             |    5 +++++
 .../scenario/qemux86/poky-image-lsb                |    5 +++++
 5 files changed, 25 insertions(+), 0 deletions(-)
 create mode 100644 scripts/qemuimage-tests/scenario/qemuarm/poky-image-lsb
 create mode 100644 scripts/qemuimage-tests/scenario/qemumips/poky-image-lsb
 create mode 100644 scripts/qemuimage-tests/scenario/qemuppc/poky-image-lsb
 create mode 100644 scripts/qemuimage-tests/scenario/qemux86-64/poky-image-lsb
 create mode 100644 scripts/qemuimage-tests/scenario/qemux86/poky-image-lsb

diff --git a/scripts/qemuimage-tests/scenario/qemuarm/poky-image-lsb b/scripts/qemuimage-tests/scenario/qemuarm/poky-image-lsb
new file mode 100644
index 0000000..b8e9847
--- /dev/null
+++ b/scripts/qemuimage-tests/scenario/qemuarm/poky-image-lsb
@@ -0,0 +1,5 @@
+sanity boot
+sanity ssh
+sanity scp
+sanity dmesg
+sanity shutdown
diff --git a/scripts/qemuimage-tests/scenario/qemumips/poky-image-lsb b/scripts/qemuimage-tests/scenario/qemumips/poky-image-lsb
new file mode 100644
index 0000000..b8e9847
--- /dev/null
+++ b/scripts/qemuimage-tests/scenario/qemumips/poky-image-lsb
@@ -0,0 +1,5 @@
+sanity boot
+sanity ssh
+sanity scp
+sanity dmesg
+sanity shutdown
diff --git a/scripts/qemuimage-tests/scenario/qemuppc/poky-image-lsb b/scripts/qemuimage-tests/scenario/qemuppc/poky-image-lsb
new file mode 100644
index 0000000..b8e9847
--- /dev/null
+++ b/scripts/qemuimage-tests/scenario/qemuppc/poky-image-lsb
@@ -0,0 +1,5 @@
+sanity boot
+sanity ssh
+sanity scp
+sanity dmesg
+sanity shutdown
diff --git a/scripts/qemuimage-tests/scenario/qemux86-64/poky-image-lsb b/scripts/qemuimage-tests/scenario/qemux86-64/poky-image-lsb
new file mode 100644
index 0000000..b8e9847
--- /dev/null
+++ b/scripts/qemuimage-tests/scenario/qemux86-64/poky-image-lsb
@@ -0,0 +1,5 @@
+sanity boot
+sanity ssh
+sanity scp
+sanity dmesg
+sanity shutdown
diff --git a/scripts/qemuimage-tests/scenario/qemux86/poky-image-lsb b/scripts/qemuimage-tests/scenario/qemux86/poky-image-lsb
new file mode 100644
index 0000000..b8e9847
--- /dev/null
+++ b/scripts/qemuimage-tests/scenario/qemux86/poky-image-lsb
@@ -0,0 +1,5 @@
+sanity boot
+sanity ssh
+sanity scp
+sanity dmesg
+sanity shutdown
-- 
1.7.1



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

* [PATCH 2/2] Remove unused tunctl-src/Makefile from scripts/
  2010-12-07  8:50 [PATCH 0/2] Add sanity scenarios for -lsb images Scott Garman
  2010-12-07  8:48 ` [PATCH 1/2] Add sanity test " Scott Garman
@ 2010-12-07  8:48 ` Scott Garman
  2010-12-07 11:56 ` [PATCH 0/2] Add sanity scenarios for -lsb images Richard Purdie
  2 siblings, 0 replies; 4+ messages in thread
From: Scott Garman @ 2010-12-07  8:48 UTC (permalink / raw)
  To: poky

Removing leftover cruft

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
---
 scripts/tunctl-src/Makefile |   17 -----------------
 1 files changed, 0 insertions(+), 17 deletions(-)
 delete mode 100644 scripts/tunctl-src/Makefile

diff --git a/scripts/tunctl-src/Makefile b/scripts/tunctl-src/Makefile
deleted file mode 100644
index 81cab8a..0000000
--- a/scripts/tunctl-src/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-OBJS = tunctl.o
-BIN = tunctl
-CFLAGS ?= -g -Wall
-
-BIN_DIR ?= /usr/bin
-
-all : $(BIN)
-
-$(BIN) : $(OBJS)
-	$(CC) $(CFLAGS) -o $(BIN) $(OBJS)
-
-clean : 
-	rm -f $(BIN) $(OBJS) *~
-
-install : $(BIN)
-	install -d $(DESTDIR)$(BIN_DIR)
-	install -s $(BIN) $(DESTDIR)$(BIN_DIR)
-- 
1.7.1



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

* [PATCH 0/2] Add sanity scenarios for -lsb images
@ 2010-12-07  8:50 Scott Garman
  2010-12-07  8:48 ` [PATCH 1/2] Add sanity test " Scott Garman
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Scott Garman @ 2010-12-07  8:50 UTC (permalink / raw)
  To: poky

Hi Saul,

This pull request adds sanity test scenarios for -lsb images, and also
removes a leftover file from when tunctl used to be built from within
scripts/

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: sgarman/lsb_sanity_tests
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/lsb_sanity_tests

Thanks,
    Scott Garman <scott.a.garman@intel.com>
---


Scott Garman (2):
  Add sanity test scenarios for -lsb images
  Remove unused tunctl-src/Makefile from scripts/

 .../scenario/qemuarm/poky-image-lsb                |    5 +++++
 .../scenario/qemumips/poky-image-lsb               |    5 +++++
 .../scenario/qemuppc/poky-image-lsb                |    5 +++++
 .../scenario/qemux86-64/poky-image-lsb             |    5 +++++
 .../scenario/qemux86/poky-image-lsb                |    5 +++++
 scripts/tunctl-src/Makefile                        |   17 -----------------
 6 files changed, 25 insertions(+), 17 deletions(-)
 create mode 100644 scripts/qemuimage-tests/scenario/qemuarm/poky-image-lsb
 create mode 100644 scripts/qemuimage-tests/scenario/qemumips/poky-image-lsb
 create mode 100644 scripts/qemuimage-tests/scenario/qemuppc/poky-image-lsb
 create mode 100644 scripts/qemuimage-tests/scenario/qemux86-64/poky-image-lsb
 create mode 100644 scripts/qemuimage-tests/scenario/qemux86/poky-image-lsb
 delete mode 100644 scripts/tunctl-src/Makefile



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

* Re: [PATCH 0/2] Add sanity scenarios for -lsb images
  2010-12-07  8:50 [PATCH 0/2] Add sanity scenarios for -lsb images Scott Garman
  2010-12-07  8:48 ` [PATCH 1/2] Add sanity test " Scott Garman
  2010-12-07  8:48 ` [PATCH 2/2] Remove unused tunctl-src/Makefile from scripts/ Scott Garman
@ 2010-12-07 11:56 ` Richard Purdie
  2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2010-12-07 11:56 UTC (permalink / raw)
  To: Scott Garman; +Cc: poky

On Tue, 2010-12-07 at 00:50 -0800, Scott Garman wrote:
> This pull request adds sanity test scenarios for -lsb images, and also
> removes a leftover file from when tunctl used to be built from within
> scripts/
> 
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>   Branch: sgarman/lsb_sanity_tests
>   Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/lsb_sanity_tests
> 
> Thanks,
>     Scott Garman <scott.a.garman@intel.com>

Merged into master, thanks.

Richard



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

end of thread, other threads:[~2010-12-07 11:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-07  8:50 [PATCH 0/2] Add sanity scenarios for -lsb images Scott Garman
2010-12-07  8:48 ` [PATCH 1/2] Add sanity test " Scott Garman
2010-12-07  8:48 ` [PATCH 2/2] Remove unused tunctl-src/Makefile from scripts/ Scott Garman
2010-12-07 11:56 ` [PATCH 0/2] Add sanity scenarios for -lsb images Richard Purdie

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.