Changeset 3569 for trunk/psLib/test/fileUtils/tst_psDB.c
- Timestamp:
- Mar 30, 2005, 1:22:39 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/fileUtils/tst_psDB.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/fileUtils/tst_psDB.c
r3566 r3569 9 9 * @author Aaron Culliney, MHPCC 10 10 * 11 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-03-30 23: 04:57$11 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-03-30 23:22:39 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 493 493 494 494 item = psMetadataLookup(row, "key_s32"); 495 if ((item == NULL) || (item->data.S32 != S32_1)) { 496 psLogMsg( __func__, PS_LOG_INFO, "oops, did not find expected output!\n" ); 495 if (item == NULL) { 496 psLogMsg( __func__, PS_LOG_INFO, "oops, key_s32 not found!\n" ); 497 failed = 1; 498 } else if (item->data.S32 != S32_1) { 499 psLogMsg( __func__, PS_LOG_INFO, "oops, did not find expected output (%d vs %d)!\n", 500 item->data.S32,S32_1); 497 501 failed = 1; 498 502 } else {
Note:
See TracChangeset
for help on using the changeset viewer.
