linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tools: PCI: exit with error code when test fails
@ 2018-09-20 15:02 Jean-Jacques Hiblot
  2018-10-04 11:11 ` Lorenzo Pieralisi
  2019-03-22 11:06 ` Lorenzo Pieralisi
  0 siblings, 2 replies; 6+ messages in thread
From: Jean-Jacques Hiblot @ 2018-09-20 15:02 UTC (permalink / raw)
  To: kishon, lorenzo.pieralisi, linux-pci; +Cc: linux-kernel, Jean-Jacques Hiblot

This makes it easier to use pcitest in automated setups.

Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
---
 tools/pci/pcitest.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/pci/pcitest.c b/tools/pci/pcitest.c
index af146bb..5adc8cd 100644
--- a/tools/pci/pcitest.c
+++ b/tools/pci/pcitest.c
@@ -143,6 +143,7 @@ static int run_test(struct pci_test *test)
 	}
 
 	fflush(stdout);
+	return (ret < 0) ? ret : 1 - ret; /* return 0 if test succeeded */
 }
 
 int main(int argc, char **argv)
@@ -231,6 +232,5 @@ int main(int argc, char **argv)
 		return -EINVAL;
 	}
 
-	run_test(test);
-	return 0;
+	return run_test(test);
 }
-- 
2.7.4


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

end of thread, other threads:[~2019-03-22 11:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-20 15:02 [PATCH] tools: PCI: exit with error code when test fails Jean-Jacques Hiblot
2018-10-04 11:11 ` Lorenzo Pieralisi
2018-11-16 12:01   ` Lorenzo Pieralisi
2019-03-19 15:43     ` Lorenzo Pieralisi
2019-03-20  5:12       ` Kishon Vijay Abraham I
2019-03-22 11:06 ` Lorenzo Pieralisi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).