summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2016-10-26 03:14:16 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2016-10-26 03:14:16 (GMT)
commitbc3a7f013b6f1c24f5d1706cd887bf92341bbd52 (patch)
tree0afd13b8fb9198d735ae209349e17ec91b1d8733 /hl
parent77065093497375d05e2a3ffd38f82c14b9378630 (diff)
downloadhdf5-bc3a7f013b6f1c24f5d1706cd887bf92341bbd52.zip
hdf5-bc3a7f013b6f1c24f5d1706cd887bf92341bbd52.tar.gz
hdf5-bc3a7f013b6f1c24f5d1706cd887bf92341bbd52.tar.bz2
Description:
- In the test for HDFFV-9758, a pragma pack(1) caused failure on Emu because Sparc cannot access misaligned data. Changed it to pack() to do the default alignment. - Added DOXYGEN_SHOULD_SKIP_THIS blocks to private elements to prevent warnings from doxygen. Platforms tested: SunOS 5.11 (emu) Linux/32 2.6 (jam)
Diffstat (limited to 'hl')
-rw-r--r--hl/c++/test/ptableTest.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/hl/c++/test/ptableTest.cpp b/hl/c++/test/ptableTest.cpp
index 68b040e..22c1c1c 100644
--- a/hl/c++/test/ptableTest.cpp
+++ b/hl/c++/test/ptableTest.cpp
@@ -551,7 +551,6 @@ int SystemTest()
return 0;
error:
-
H5E_BEGIN_TRY {
H5Tclose(dtypeID1);
H5Tclose(dtypeID2);
@@ -569,9 +568,14 @@ error:
* Previously, data of the field that follows the string was read back
* as garbage when #pragma pack(1) is used.
* 2016/10/20 -BMR
+ * Updated:
+ * #pragma pack(1) caused failure on Emu because Sparc cannot
+ * access misaligned data. Changed it to pack() to do the
+ * default alignment.
+ * 2016/10/25 -BMR
*-------------------------------------------------------------------------
*/
-#pragma pack(1) // no padding
+#pragma pack() // default alignment
const char* ABHI_PT("/abhiTest");
const hsize_t NUM_PACKETS = 5;
const int STRING_LENGTH = 19; // including terminating NULL