Description: Here the test looks for 64-bit binary alwasys and hence …#134
Description: Here the test looks for 64-bit binary alwasys and hence …#134bskjois wants to merge 1 commit into
Conversation
…was failing on all 32-bit archs. So, added a check to know the arch and look for the binary accordingly.
| tc_register "gtk-query-immodules-2.0-64 testing" | ||
| gtk-query-immodules-2.0-64 >$stdout 2>$stderr | ||
| fi | ||
|
|
There was a problem hiding this comment.
Can this check be made generic for any version ?
There was a problem hiding this comment.
That's a good suggestion but I looked at different versions of gtk2 on different distros. All are providing the same library. So I think, we can consider this as generic one till there is any change.
[root@localhost ~]# rpm -ql gtk2-2.24.28-8.el7.ppc64le | grep gtk-query
/usr/bin/gtk-query-immodules-2.0-64
[root@localhost ~]# rpm -ql gtk2-2.24.31-1.el7.ppc64le | grep gtk-query
/usr/bin/gtk-query-immodules-2.0-64
[root@localhost ~]$ rpm -ql gtk2-2.24.30-1.fc24.i686 | grep gtk-query
/usr/bin/gtk-query-immodules-2.0-32
[root@localhost ~]$ rpm -ql gtk2-2.24.30-1.fc24.x86_64 | grep gtk-query
/usr/bin/gtk-query-immodules-2.0-64
…was failing on all 32-bit archs. So, added a check to know the arch and look for the binary accordingly.