~ubuntu-branches/ubuntu/vivid/adios/vivid-proposed

« back to all changes in this revision

Viewing changes to tests/C/flexpath_tests/include/test_common.h

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2014-06-16 23:06:38 UTC
  • mfrom: (15.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20140616230638-cxryhot6b8ge32l6
Tags: 1.7.0-1
* New upstream release.
* Add adios.pc pkgconfig file. adios_config now uses this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
238
238
#define TEST_LONG_EQUAL(value_ref, value, err_count, test_res) \
239
239
        if (value != value_ref ){ \
240
240
                test_res = TEST_FAILED; \
241
 
                p_test_failed("(expected=%ld, got=%ld)\n", value_ref, value); \
 
241
                p_test_failed("(expected=%lld, got=%lld)\n", value_ref, value); \
242
242
                err_count++; \
243
243
        }
244
244