Note: This is a public test instance of Red Hat Bugzilla. The data contained within is a snapshot of the live data so any changes you make will not be reflected in the production Bugzilla. Email is disabled so feel free to test any aspect of the site that you want. File any problems you find or give feedback at bugzilla.redhat.com.

Bug 1080122

Summary: hdf5 make check failed in ppc64le
Product: [Fedora] Fedora Reporter: Menanteau Guy <menantea>
Component: hdf5Assignee: Orion Poplawski <orion>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: rawhideCC: c.david86, orion, pertusus
Target Milestone: ---   
Target Release: ---   
Hardware: ppc64le   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-03-24 19:47:16 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 1051573    

Description Menanteau Guy 2014-03-24 17:42:56 UTC
Description of problem:
Some tests failed in ppc64le because ppc64le arch is not guessed

Version-Release number of selected component (if applicable):
hdf5-1.8.12-5

How reproducible:
run rpmbuild with check enabled on ppc64le

Additional info:
need to patch bin/config.gues
--- hdf5-1.8.12/bin/config.guess.ori    
+++ hdf5-1.8.12/bin/config.guess        
@@ -921,6 +921,9 @@ EOF
     ppc64:Linux:*:*)
        echo powerpc64-unknown-linux-gnu
        exit ;;
+    ppc64le:Linux:*:*)
+       echo powerpc64le-unknown-linux-gnu
+       exit ;;
     alpha:Linux:*:*)
        case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
          EV5)   UNAME_MACHINE=alphaev5 ;;

Be carreful, this patch cannot be applied as is. bin/config.guess is prviously patched in the spec file by hdf5-aarch64.patch.

Comment 1 Orion Poplawski 2014-03-24 19:47:16 UTC
Thanks, applied.