commit fabtests for openSUSE:Factory

2018-11-08 Thread root
Hello community,

here is the log from the commit of package fabtests for openSUSE:Factory 
checked in at 2018-11-08 09:48:18

Comparing /work/SRC/openSUSE:Factory/fabtests (Old)
 and  /work/SRC/openSUSE:Factory/.fabtests.new (New)


Package is "fabtests"

Thu Nov  8 09:48:18 2018 rev:9 rq:646010 version:1.6.2

Changes:

--- /work/SRC/openSUSE:Factory/fabtests/fabtests.changes2018-03-18 
21:44:43.277980320 +0100
+++ /work/SRC/openSUSE:Factory/.fabtests.new/fabtests.changes   2018-11-08 
09:48:27.941101560 +0100
@@ -1,0 +2,6 @@
+Thu Oct 25 10:57:07 UTC 2018 - nmoreychaisemar...@suse.com
+
+- Update to version 1.6.2 (fate#325852)
+  * No release notes available
+
+---

Old:

  fabtests-1.6.0.0.d0916cc3f2c0.tar.bz2

New:

  fabtests-1.6.2.0.e32c9faa95a5.tar.bz2



Other differences:
--
++ fabtests.spec ++
--- /var/tmp/diff_new_pack.qrwcRh/_old  2018-11-08 09:48:28.477100928 +0100
+++ /var/tmp/diff_new_pack.qrwcRh/_new  2018-11-08 09:48:28.481100924 +0100
@@ -16,13 +16,13 @@
 #
 
 
-%define git_ver .0.d0916cc3f2c0
+%define git_ver .0.e32c9faa95a5
 
 Name:   fabtests
-Version:1.6.0
+Version:1.6.2
 Release:0
 Summary:Test suite for libfabric API
-License:BSD-2-Clause or GPL-2.0
+License:BSD-2-Clause OR GPL-2.0-only
 Group:  Development/Tools/Other
 Url:http://www.github.com/ofiwg/fabtests
 Source: %{name}-%{version}%{git_ver}.tar.bz2

++ _service ++
--- /var/tmp/diff_new_pack.qrwcRh/_old  2018-11-08 09:48:28.505100895 +0100
+++ /var/tmp/diff_new_pack.qrwcRh/_new  2018-11-08 09:48:28.509100891 +0100
@@ -8,7 +8,7 @@
 @PARENT_TAG@.@TAG_OFFSET@.%h
 v(.*)
 \1
-d0916cc3f2c04748043b96fb6f1c1a46655a522d
+e32c9faa95a558fc0505d82764af1991bfcde9d5
   
   
 fabtests*.tar

++ fabtests-1.6.0.0.d0916cc3f2c0.tar.bz2 -> 
fabtests-1.6.2.0.e32c9faa95a5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fabtests-1.6.0.0.d0916cc3f2c0/common/shared.c 
new/fabtests-1.6.2.0.e32c9faa95a5/common/shared.c
--- old/fabtests-1.6.0.0.d0916cc3f2c0/common/shared.c   2018-03-14 
14:23:56.0 +0100
+++ new/fabtests-1.6.2.0.e32c9faa95a5/common/shared.c   2018-09-24 
12:15:48.0 +0200
@@ -494,8 +494,7 @@
}
 
if (opts.options & FT_OPT_TX_CNTR) {
-   ft_cntr_set_wait_attr();
-   ret = fi_cntr_open(domain, _attr, , );
+   ret = ft_cntr_open();
if (ret) {
FT_PRINTERR("fi_cntr_open", ret);
return ret;
@@ -517,8 +516,7 @@
}
 
if (opts.options & FT_OPT_RX_CNTR) {
-   ft_cntr_set_wait_attr();
-   ret = fi_cntr_open(domain, _attr, , );
+   ret = ft_cntr_open();
if (ret) {
FT_PRINTERR("fi_cntr_open", ret);
return ret;
@@ -1963,6 +1961,65 @@
return ret;
 }
 
+static int ft_spin_for_cntr(struct fid_cntr *cntr, uint64_t total, int timeout)
+{
+   struct timespec a, b;
+   uint64_t cur;
+
+   if (timeout >= 0)
+   clock_gettime(CLOCK_MONOTONIC, );
+
+   for (;;) {
+   cur = fi_cntr_read(cntr);
+   if (cur >= total)
+   return 0;
+
+   if (timeout >= 0) {
+   clock_gettime(CLOCK_MONOTONIC, );
+   if ((b.tv_sec - a.tv_sec) > timeout)
+   break;
+   }
+   }
+
+   fprintf(stderr, "%ds timeout expired\n", timeout);
+   return -FI_ENODATA;
+}
+
+static int ft_wait_for_cntr(struct fid_cntr *cntr, uint64_t total, int timeout)
+{
+   int ret;
+
+   while (fi_cntr_read(cntr) < total) {
+   ret = fi_cntr_wait(cntr, total, timeout);
+   if (ret)
+   FT_PRINTERR("fi_cntr_wait", ret);
+   else
+   break;
+   }
+   return 0;
+}
+
+static int ft_get_cntr_comp(struct fid_cntr *cntr, uint64_t total, int timeout)
+{
+   int ret = 0;
+
+   switch (opts.comp_method) {
+   case FT_COMP_SREAD:
+   case FT_COMP_WAITSET:
+   case FT_COMP_WAIT_FD:
+   ret = ft_wait_for_cntr(cntr, total, timeout);
+   break;
+   default:
+   ret = ft_spin_for_cntr(cntr, total, timeout);
+   break;
+   }
+
+   if (ret)
+   FT_PRINTERR("fs_get_cntr_comp", ret);
+
+   return ret;
+}
+
 int ft_get_rx_comp(uint64_t total)
 {
int ret = FI_SUCCESS;
@@ -1970,13 +2027,7 @@
if (opts.options & 

commit fabtests for openSUSE:Factory

2018-03-18 Thread root
Hello community,

here is the log from the commit of package fabtests for openSUSE:Factory 
checked in at 2018-03-18 21:44:37

Comparing /work/SRC/openSUSE:Factory/fabtests (Old)
 and  /work/SRC/openSUSE:Factory/.fabtests.new (New)


Package is "fabtests"

Sun Mar 18 21:44:37 2018 rev:8 rq:587429 version:1.6.0

Changes:

--- /work/SRC/openSUSE:Factory/fabtests/fabtests.changes2017-12-31 
01:13:15.256404104 +0100
+++ /work/SRC/openSUSE:Factory/.fabtests.new/fabtests.changes   2018-03-18 
21:44:43.277980320 +0100
@@ -1,0 +2,6 @@
+Thu Mar 15 08:00:58 UTC 2018 - nmoreychaisemar...@suse.com
+
+- Update to version 1.6.0
+  * No release notes available
+
+---

Old:

  fabtests-1.5.3.0.14a683c40239.tar.bz2

New:

  fabtests-1.6.0.0.d0916cc3f2c0.tar.bz2



Other differences:
--
++ fabtests.spec ++
--- /var/tmp/diff_new_pack.OdBiEG/_old  2018-03-18 21:44:44.133949484 +0100
+++ /var/tmp/diff_new_pack.OdBiEG/_new  2018-03-18 21:44:44.133949484 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fabtests
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,10 +16,10 @@
 #
 
 
-%define git_ver .0.14a683c40239
+%define git_ver .0.d0916cc3f2c0
 
 Name:   fabtests
-Version:1.5.3
+Version:1.6.0
 Release:0
 Summary:Test suite for libfabric API
 License:BSD-2-Clause or GPL-2.0

++ _service ++
--- /var/tmp/diff_new_pack.OdBiEG/_old  2018-03-18 21:44:44.173948043 +0100
+++ /var/tmp/diff_new_pack.OdBiEG/_new  2018-03-18 21:44:44.173948043 +0100
@@ -8,7 +8,7 @@
 @PARENT_TAG@.@TAG_OFFSET@.%h
 v(.*)
 \1
-14a683c40239650a6c3cdd95a979801e1908941b
+d0916cc3f2c04748043b96fb6f1c1a46655a522d
   
   
 fabtests*.tar

++ fabtests-1.5.3.0.14a683c40239.tar.bz2 -> 
fabtests-1.6.0.0.d0916cc3f2c0.tar.bz2 ++
 7504 lines of diff (skipped)




commit fabtests for openSUSE:Factory

2017-12-30 Thread root
Hello community,

here is the log from the commit of package fabtests for openSUSE:Factory 
checked in at 2017-12-31 01:13:08

Comparing /work/SRC/openSUSE:Factory/fabtests (Old)
 and  /work/SRC/openSUSE:Factory/.fabtests.new (New)


Package is "fabtests"

Sun Dec 31 01:13:08 2017 rev:7 rq:559255 version:1.5.3

Changes:

--- /work/SRC/openSUSE:Factory/fabtests/fabtests.changes2017-11-24 
10:53:43.937902981 +0100
+++ /work/SRC/openSUSE:Factory/.fabtests.new/fabtests.changes   2017-12-31 
01:13:15.256404104 +0100
@@ -1,0 +2,6 @@
+Wed Dec 20 08:55:18 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Update to version 1.5.3
+  * No release notes available
+
+---

Old:

  fabtests-1.5.2.0.ed3448c.tar.bz2

New:

  fabtests-1.5.3.0.14a683c40239.tar.bz2



Other differences:
--
++ fabtests.spec ++
--- /var/tmp/diff_new_pack.lZnXZK/_old  2017-12-31 01:13:15.952171972 +0100
+++ /var/tmp/diff_new_pack.lZnXZK/_new  2017-12-31 01:13:15.956170638 +0100
@@ -16,10 +16,10 @@
 #
 
 
-%define git_ver .0.ed3448c
+%define git_ver .0.14a683c40239
 
 Name:   fabtests
-Version:1.5.2
+Version:1.5.3
 Release:0
 Summary:Test suite for libfabric API
 License:BSD-2-Clause or GPL-2.0

++ _service ++
--- /var/tmp/diff_new_pack.lZnXZK/_old  2017-12-31 01:13:15.992158631 +0100
+++ /var/tmp/diff_new_pack.lZnXZK/_new  2017-12-31 01:13:15.992158631 +0100
@@ -8,7 +8,7 @@
 @PARENT_TAG@.@TAG_OFFSET@.%h
 v(.*)
 \1
-ed3448c2a71fd68d6999bdc872ec2aeb061e8d1a
+14a683c40239650a6c3cdd95a979801e1908941b
   
   
 fabtests*.tar

++ fabtests-1.5.2.0.ed3448c.tar.bz2 -> 
fabtests-1.5.3.0.14a683c40239.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fabtests-1.5.2.0.ed3448c/.appveyor.yml 
new/fabtests-1.5.3.0.14a683c40239/.appveyor.yml
--- old/fabtests-1.5.2.0.ed3448c/.appveyor.yml  2017-11-08 22:48:45.0 
+0100
+++ new/fabtests-1.5.3.0.14a683c40239/.appveyor.yml 2017-12-19 
14:02:59.0 +0100
@@ -11,6 +11,7 @@
   - cd ..
   - git clone https://github.com/ofiwg/libfabric
   - cd libfabric
+  - git checkout -b v1.5.x origin/v1.5.x
   - ps: .appveyor.ps1 -Verbose
   - msbuild libfabric.sln
   - set PATH=%CD%\x64\%CONFIGURATION%;%PATH%
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fabtests-1.5.2.0.ed3448c/benchmarks/dgram_pingpong.c 
new/fabtests-1.5.3.0.14a683c40239/benchmarks/dgram_pingpong.c
--- old/fabtests-1.5.2.0.ed3448c/benchmarks/dgram_pingpong.c2017-11-08 
22:48:45.0 +0100
+++ new/fabtests-1.5.3.0.14a683c40239/benchmarks/dgram_pingpong.c   
2017-12-19 14:02:59.0 +0100
@@ -52,7 +52,7 @@
/* Post an extra receive to avoid lacking a posted receive in the
 * finalize.
 */
-   ret = fi_recv(ep, rx_buf, rx_size + ft_rx_prefix_size(), fi_mr_desc(mr),
+   ret = fi_recv(ep, rx_buf, rx_size + ft_rx_prefix_size(), mr_desc,
0, _ctx);
 
if (!(opts.options & FT_OPT_SIZE)) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fabtests-1.5.2.0.ed3448c/common/shared.c 
new/fabtests-1.5.3.0.14a683c40239/common/shared.c
--- old/fabtests-1.5.2.0.ed3448c/common/shared.c2017-11-08 
22:48:45.0 +0100
+++ new/fabtests-1.5.3.0.14a683c40239/common/shared.c   2017-12-19 
14:02:59.0 +0100
@@ -59,6 +59,7 @@
 struct fid_cq *txcq, *rxcq;
 struct fid_cntr *txcntr, *rxcntr;
 struct fid_mr *mr;
+void *mr_desc = NULL;
 struct fid_av *av;
 struct fid_eq *eq;
 struct fid_mc *mc;
@@ -160,13 +161,13 @@
return ret;
 }
 
-size_t ft_tx_prefix_size()
+size_t ft_tx_prefix_size(void)
 {
return (fi->tx_attr->mode & FI_MSG_PREFIX) ?
fi->ep_attr->msg_prefix_size : 0;
 }
 
-size_t ft_rx_prefix_size()
+size_t ft_rx_prefix_size(void)
 {
return (fi->rx_attr->mode & FI_MSG_PREFIX) ?
fi->ep_attr->msg_prefix_size : 0;
@@ -225,7 +226,7 @@
return fi_cntr_open(domain, _attr, cntr, cntr);
 }
 
-int ft_rma_read_target_allowed(uint64_t caps)
+static inline int ft_rma_read_target_allowed(uint64_t caps)
 {
if (caps & (FI_RMA | FI_ATOMIC)) {
if (caps & FI_REMOTE_READ)
@@ -235,7 +236,7 @@
return 0;
 }
 
-int ft_rma_write_target_allowed(uint64_t caps)
+static inline int ft_rma_write_target_allowed(uint64_t caps)
 {
if (caps & (FI_RMA | FI_ATOMIC)) {
if (caps & FI_REMOTE_WRITE)
@@ -245,10 +246,16 @@
return 0;
 }
 
+static inline int ft_check_mr_local_flag(struct fi_info *info)
+{
+   return ((info->mode & 

commit fabtests for openSUSE:Factory

2017-11-24 Thread root
Hello community,

here is the log from the commit of package fabtests for openSUSE:Factory 
checked in at 2017-11-24 10:53:42

Comparing /work/SRC/openSUSE:Factory/fabtests (Old)
 and  /work/SRC/openSUSE:Factory/.fabtests.new (New)


Package is "fabtests"

Fri Nov 24 10:53:42 2017 rev:6 rq:543958 version:1.5.2

Changes:

--- /work/SRC/openSUSE:Factory/fabtests/fabtests.changes2017-10-17 
01:50:57.766805814 +0200
+++ /work/SRC/openSUSE:Factory/.fabtests.new/fabtests.changes   2017-11-24 
10:53:43.937902981 +0100
@@ -1,0 +2,6 @@
+Mon Nov 20 16:32:20 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Update to version 1.5.2
+  * No release notes available
+
+---

Old:

  fabtests-1.5.1.0.5a76567.tar.bz2

New:

  fabtests-1.5.2.0.ed3448c.tar.bz2



Other differences:
--
++ fabtests.spec ++
--- /var/tmp/diff_new_pack.QjvVOe/_old  2017-11-24 10:53:44.673876098 +0100
+++ /var/tmp/diff_new_pack.QjvVOe/_new  2017-11-24 10:53:44.677875952 +0100
@@ -16,10 +16,10 @@
 #
 
 
-%define git_ver .0.5a76567
+%define git_ver .0.ed3448c
 
 Name:   fabtests
-Version:1.5.1
+Version:1.5.2
 Release:0
 Summary:Test suite for libfabric API
 License:BSD-2-Clause or GPL-2.0

++ _service ++
--- /var/tmp/diff_new_pack.QjvVOe/_old  2017-11-24 10:53:44.705874930 +0100
+++ /var/tmp/diff_new_pack.QjvVOe/_new  2017-11-24 10:53:44.705874930 +0100
@@ -8,7 +8,7 @@
 @PARENT_TAG@.@TAG_OFFSET@.%h
 v(.*)
 \1
-5a7656734f441c7f39306d1ae1ca58a57c46bb0d
+ed3448c2a71fd68d6999bdc872ec2aeb061e8d1a
   
   
 fabtests*.tar

++ fabtests-1.5.1.0.5a76567.tar.bz2 -> fabtests-1.5.2.0.ed3448c.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fabtests-1.5.1.0.5a76567/common/shared.c 
new/fabtests-1.5.2.0.ed3448c/common/shared.c
--- old/fabtests-1.5.1.0.5a76567/common/shared.c2017-10-07 
01:24:17.0 +0200
+++ new/fabtests-1.5.2.0.ed3448c/common/shared.c2017-11-08 
22:48:45.0 +0100
@@ -803,9 +803,18 @@
 
if (fi->ep_attr->type == FI_EP_MSG || fi->caps & FI_MULTICAST)
FT_EP_BIND(ep, eq, 0);
+
FT_EP_BIND(ep, av, 0);
-   FT_EP_BIND(ep, txcq, FI_TRANSMIT);
-   FT_EP_BIND(ep, rxcq, FI_RECV);
+
+   flags = FI_TRANSMIT;
+   if (!(opts.options & FT_OPT_TX_CQ))
+   flags |= FI_SELECTIVE_COMPLETION;
+   FT_EP_BIND(ep, txcq, flags);
+
+   flags = FI_RECV;
+   if (!(opts.options & FT_OPT_RX_CQ))
+   flags |= FI_SELECTIVE_COMPLETION;
+   FT_EP_BIND(ep, rxcq, flags);
 
ret = ft_get_cq_fd(txcq, _fd);
if (ret)
@@ -1608,7 +1617,7 @@
if (ret > 0) {
if (timeout >= 0)
clock_gettime(CLOCK_MONOTONIC, );
-   if (!ft_tag_is_valid(cq, , rx_cq_cntr))
+   if (!ft_tag_is_valid(cq, , ft_tag ? ft_tag : 
rx_cq_cntr))
return -FI_EOTHER;
(*cur)++;
} else if (ret < 0 && ret != -FI_EAGAIN) {
@@ -1637,7 +1646,7 @@
while (total - *cur > 0) {
ret = fi_cq_sread(cq, , 1, NULL, timeout);
if (ret > 0) {
-   if (!ft_tag_is_valid(cq, , rx_cq_cntr))
+   if (!ft_tag_is_valid(cq, , ft_tag ? ft_tag : 
rx_cq_cntr))
return -FI_EOTHER;
(*cur)++;
} else if (ret < 0 && ret != -FI_EAGAIN) {
@@ -1671,7 +1680,7 @@
 
ret = fi_cq_read(cq, , 1);
if (ret > 0) {
-   if (!ft_tag_is_valid(cq, , rx_cq_cntr))
+   if (!ft_tag_is_valid(cq, , ft_tag ? ft_tag : 
rx_cq_cntr))
return -FI_EOTHER;
(*cur)++;
} else if (ret < 0 && ret != -FI_EAGAIN) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fabtests-1.5.1.0.5a76567/configure.ac 
new/fabtests-1.5.2.0.ed3448c/configure.ac
--- old/fabtests-1.5.1.0.5a76567/configure.ac   2017-10-07 01:24:17.0 
+0200
+++ new/fabtests-1.5.2.0.ed3448c/configure.ac   2017-11-08 22:48:45.0 
+0100
@@ -4,7 +4,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.57)
-AC_INIT([fabtests], [1.5.1], [of...@lists.openfabrics.org])
+AC_INIT([fabtests], [1.5.2], [of...@lists.openfabrics.org])
 AC_CONFIG_AUX_DIR(config)
 AC_CONFIG_MACRO_DIR(config)
 AC_CONFIG_HEADERS(config.h)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit fabtests for openSUSE:Factory

2017-10-16 Thread root
Hello community,

here is the log from the commit of package fabtests for openSUSE:Factory 
checked in at 2017-10-17 01:50:56

Comparing /work/SRC/openSUSE:Factory/fabtests (Old)
 and  /work/SRC/openSUSE:Factory/.fabtests.new (New)


Package is "fabtests"

Tue Oct 17 01:50:56 2017 rev:5 rq:532704 version:1.5.1

Changes:

--- /work/SRC/openSUSE:Factory/fabtests/fabtests.changes2017-09-07 
22:14:57.712197757 +0200
+++ /work/SRC/openSUSE:Factory/.fabtests.new/fabtests.changes   2017-10-17 
01:50:57.766805814 +0200
@@ -1,0 +2,7 @@
+Mon Oct  9 07:49:10 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Update to version 1.5.1
+  * No release notes available
+  * Bugfixes backported from master branch
+
+---

Old:

  fabtests-1.5.0.0.65771ff.tar.bz2

New:

  fabtests-1.5.1.0.5a76567.tar.bz2



Other differences:
--
++ fabtests.spec ++
--- /var/tmp/diff_new_pack.Wk5F2m/_old  2017-10-17 01:50:58.698762154 +0200
+++ /var/tmp/diff_new_pack.Wk5F2m/_new  2017-10-17 01:50:58.702761966 +0200
@@ -16,10 +16,10 @@
 #
 
 
-%define git_ver .0.65771ff
+%define git_ver .0.5a76567
 
 Name:   fabtests
-Version:1.5.0
+Version:1.5.1
 Release:0
 Summary:Test suite for libfabric API
 License:BSD-2-Clause or GPL-2.0

++ _service ++
--- /var/tmp/diff_new_pack.Wk5F2m/_old  2017-10-17 01:50:58.726760842 +0200
+++ /var/tmp/diff_new_pack.Wk5F2m/_new  2017-10-17 01:50:58.726760842 +0200
@@ -8,7 +8,7 @@
 @PARENT_TAG@.@TAG_OFFSET@.%h
 v(.*)
 \1
-65771ffbfa599eaa05d634431d82e7d70a74da81
+5a7656734f441c7f39306d1ae1ca58a57c46bb0d
   
   
 fabtests*.tar

++ fabtests-1.5.0.0.65771ff.tar.bz2 -> fabtests-1.5.1.0.5a76567.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fabtests-1.5.0.0.65771ff/AUTHORS 
new/fabtests-1.5.1.0.5a76567/AUTHORS
--- old/fabtests-1.5.0.0.65771ff/AUTHORS2017-08-09 13:39:11.0 
+0200
+++ new/fabtests-1.5.1.0.5a76567/AUTHORS2017-10-07 01:24:17.0 
+0200
@@ -17,6 +17,7 @@
 Jerome Berryhill 
 Jerome Boyd Berryhill 
 Jithin Jose 
+John Byrne 
 jose 
 jose 
 Ken Raffenetti 
@@ -32,6 +33,7 @@
 Sean Hefty 
 Shantonu Hossain 
 Solovyev, Dmitriy 
+Spruit, Neil R 
 Stan Smith 
 Sung-Eun Choi 
 Xuyang Wang 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fabtests-1.5.0.0.65771ff/benchmarks/rma_bw.c 
new/fabtests-1.5.1.0.5a76567/benchmarks/rma_bw.c
--- old/fabtests-1.5.0.0.65771ff/benchmarks/rma_bw.c2017-08-09 
13:39:11.0 +0200
+++ new/fabtests-1.5.1.0.5a76567/benchmarks/rma_bw.c2017-10-07 
01:24:17.0 +0200
@@ -97,13 +97,18 @@
if (!hints)
return EXIT_FAILURE;
 
+   hints->caps = FI_MSG | FI_RMA;
+   hints->domain_attr->resource_mgmt = FI_RM_ENABLED;
+   hints->mode = FI_CONTEXT;
+   hints->domain_attr->mr_mode = FI_MR_LOCAL | OFI_MR_BASIC_MAP;
+
while ((op = getopt(argc, argv, "ho:" CS_OPTS INFO_OPTS 
BENCHMARK_OPTS)) != -1) {
switch (op) {
default:
ft_parse_benchmark_opts(op, optarg);
ft_parseinfo(op, optarg, hints);
ft_parsecsopts(op, optarg, );
-   ret = ft_parse_rma_opts(op, optarg, );
+   ret = ft_parse_rma_opts(op, optarg, hints, );
if (ret)
return ret;
break;
@@ -123,11 +128,6 @@
if (optind < argc)
opts.dst_addr = argv[optind];
 
-   hints->caps = FI_MSG | FI_RMA;
-   hints->domain_attr->resource_mgmt = FI_RM_ENABLED;
-   hints->mode = FI_CONTEXT | FI_RX_CQ_DATA;
-   hints->domain_attr->mr_mode = FI_MR_LOCAL | OFI_MR_BASIC_MAP;
-
ret = run();
 
ft_free_res();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fabtests-1.5.0.0.65771ff/common/shared.c 
new/fabtests-1.5.1.0.5a76567/common/shared.c
--- old/fabtests-1.5.0.0.65771ff/common/shared.c2017-08-09 
13:39:11.0 +0200
+++ new/fabtests-1.5.1.0.5a76567/common/shared.c2017-10-07 
01:24:17.0 +0200
@@ -435,11 +435,6 @@
 int ft_alloc_ep_res(struct fi_info *fi)
 {
int ret;
-   if 

commit fabtests for openSUSE:Factory

2017-09-07 Thread root
Hello community,

here is the log from the commit of package fabtests for openSUSE:Factory 
checked in at 2017-09-07 22:14:46

Comparing /work/SRC/openSUSE:Factory/fabtests (Old)
 and  /work/SRC/openSUSE:Factory/.fabtests.new (New)


Package is "fabtests"

Thu Sep  7 22:14:46 2017 rev:4 rq:521148 version:1.5.0

Changes:

--- /work/SRC/openSUSE:Factory/fabtests/fabtests.changes2017-08-24 
18:50:36.896492036 +0200
+++ /work/SRC/openSUSE:Factory/.fabtests.new/fabtests.changes   2017-09-07 
22:14:57.712197757 +0200
@@ -1,0 +2,5 @@
+Tue Sep  5 12:05:29 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Update _service to allow auto updates from github
+
+---

Old:

  fabtests-1.5.0.tar.bz2

New:

  fabtests-1.5.0.0.65771ff.tar.bz2



Other differences:
--
++ fabtests.spec ++
--- /var/tmp/diff_new_pack.JkOP8O/_old  2017-09-07 22:14:58.820041638 +0200
+++ /var/tmp/diff_new_pack.JkOP8O/_new  2017-09-07 22:14:58.824041074 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define git_ver %{nil}
+%define git_ver .0.65771ff
 
 Name:   fabtests
 Version:1.5.0

++ _service ++
--- /var/tmp/diff_new_pack.JkOP8O/_old  2017-09-07 22:14:58.848037693 +0200
+++ /var/tmp/diff_new_pack.JkOP8O/_new  2017-09-07 22:14:58.848037693 +0200
@@ -5,7 +5,9 @@
 no
 .git
 fabtests
-1.5.0
+@PARENT_TAG@.@TAG_OFFSET@.%h
+v(.*)
+\1
 65771ffbfa599eaa05d634431d82e7d70a74da81
   
   




commit fabtests for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package fabtests for openSUSE:Factory 
checked in at 2017-08-24 18:50:36

Comparing /work/SRC/openSUSE:Factory/fabtests (Old)
 and  /work/SRC/openSUSE:Factory/.fabtests.new (New)


Package is "fabtests"

Thu Aug 24 18:50:36 2017 rev:3 rq:515995 version:1.5.0

Changes:

--- /work/SRC/openSUSE:Factory/fabtests/fabtests.changes2017-05-16 
14:33:44.655323810 +0200
+++ /work/SRC/openSUSE:Factory/.fabtests.new/fabtests.changes   2017-08-24 
18:50:36.896492036 +0200
@@ -1,0 +2,22 @@
+Thu Aug 10 08:32:06 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Update to version 1.5.0.
+  * No release notes available
+  * Fixes bsc#1051636
+- Build for all archs
+
+---
+Fri Jun 30 07:32:36 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Remove BuildRequires for psm/psm2 libs
+- Add x86 build
+
+---
+Thu Jun  8 08:17:20 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Update to version 1.4.2 to keep the sync with libfabric.
+  * No changes
+- Add fabtests-rpmlintrc to remove warning concerning missing
+  man pages
+
+---

Old:

  fabtests-1.4.1.tar.bz2

New:

  _service
  fabtests-1.5.0.tar.bz2
  fabtests-rpmlintrc



Other differences:
--
++ fabtests.spec ++
--- /var/tmp/diff_new_pack.bKJbVJ/_old  2017-08-24 18:50:38.124319152 +0200
+++ /var/tmp/diff_new_pack.bKJbVJ/_new  2017-08-24 18:50:38.132318026 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fabtests
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,28 +16,31 @@
 #
 
 
+%define git_ver %{nil}
+
 Name:   fabtests
-Version:1.4.1
+Version:1.5.0
 Release:0
 Summary:Test suite for libfabric API
 License:BSD-2-Clause or GPL-2.0
 Group:  Development/Tools/Other
 Url:http://www.github.com/ofiwg/fabtests
-Source: 
https://github.com/ofiwg/fabtests/releases/download/v%{version}/%{name}-%{version}.tar.bz2
-BuildRequires:  libfabric-devel
-BuildRequires:  libpsm2-compat
-BuildRequires:  libpsm_infinipath1
+Source: %{name}-%{version}%{git_ver}.tar.bz2
+Source1:fabtests-rpmlintrc
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libfabric-devel >= %{version}
+BuildRequires:  libtool
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-#Currently *only* builds on x86_64 as it is dependent on libpsm2
-ExclusiveArch:  x86_64
 
 %description
 Fabtests provides a set of examples that uses libfabric, a fabric software 
library.
 
 %prep
-%setup -q
+%setup -q -n  %{name}-%{version}%{git_ver}
 
 %build
+./autogen.sh
 %configure %{?_with_libfabric}
 make %{?_smp_mflags}
 

++ _service ++

  
git
https://github.com/ofiwg/fabtests.git
no
.git
fabtests
1.5.0
65771ffbfa599eaa05d634431d82e7d70a74da81
  
  
fabtests*.tar
bz2
  


++ fabtests-1.4.1.tar.bz2 -> fabtests-1.5.0.tar.bz2 ++
 56499 lines of diff (skipped)

++ fabtests-rpmlintrc ++
# This line is mandatory to access the configuration functions
from Config import *

addFilter("no-manual-page-for-binary fi_.*")
addFilter("no-manual-page-for-binary runfabtests.sh")
addFilter("no-manual-page-for-binary rft_yaml_to_junit_xml")



commit fabtests for openSUSE:Factory

2017-05-16 Thread root
Hello community,

here is the log from the commit of package fabtests for openSUSE:Factory 
checked in at 2017-05-16 14:33:23

Comparing /work/SRC/openSUSE:Factory/fabtests (Old)
 and  /work/SRC/openSUSE:Factory/.fabtests.new (New)


Package is "fabtests"

Tue May 16 14:33:23 2017 rev:2 rq:482444 version:1.4.1

Changes:

--- /work/SRC/openSUSE:Factory/fabtests/fabtests.changes2017-03-24 
02:17:27.607673429 +0100
+++ /work/SRC/openSUSE:Factory/.fabtests.new/fabtests.changes   2017-05-16 
14:33:44.655323810 +0200
@@ -1,0 +2,6 @@
+Thu Mar 23 16:18:58 UTC 2017 - jeng...@inai.de
+
+- Fix RPM group.
+- Trim filler words from description.
+
+---



Other differences:
--
++ fabtests.spec ++
--- /var/tmp/diff_new_pack.kxsnT2/_old  2017-05-16 14:33:45.319230537 +0200
+++ /var/tmp/diff_new_pack.kxsnT2/_new  2017-05-16 14:33:45.327229413 +0200
@@ -21,7 +21,7 @@
 Release:0
 Summary:Test suite for libfabric API
 License:BSD-2-Clause or GPL-2.0
-Group:  System Environment/Libraries
+Group:  Development/Tools/Other
 Url:http://www.github.com/ofiwg/fabtests
 Source: 
https://github.com/ofiwg/fabtests/releases/download/v%{version}/%{name}-%{version}.tar.bz2
 BuildRequires:  libfabric-devel
@@ -30,8 +30,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #Currently *only* builds on x86_64 as it is dependent on libpsm2
 ExclusiveArch:  x86_64
+
 %description
-Fabtests provides a set of examples that uses libfabric - a high-performance 
fabric software library.
+Fabtests provides a set of examples that uses libfabric, a fabric software 
library.
 
 %prep
 %setup -q