Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into threading_updates
Browse files Browse the repository at this point in the history
  • Loading branch information
qkoziol committed Mar 27, 2024
2 parents 1fbb458 + ce3784d commit aae5e79
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cygwin-auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
cygwin_build_and_test:
name: "cygwin ${{ inputs.build_mode }}"
runs-on: windows-latest
timeout-minutes: 30
steps:
- name: Set git to use LF
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cygwin-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
cygwin_build_and_test:
name: "cygwin-${{ inputs.build_mode }}"
runs-on: windows-latest
timeout-minutes: 30
steps:
- name: Set git to use LF
run: |
Expand Down
2 changes: 1 addition & 1 deletion fortran/test/tH5T.F90
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ END SUBROUTINE enumtest
!-------------------------------------------------------------------------
! * Function: test_derived_flt
! *
! * Purpose: Tests user-define and query functions of floating-point types.
! * Purpose: Tests user-defined and query functions of floating-point types.
! * test h5tget/set_fields_f.
! *
! * Return: Success: 0
Expand Down
12 changes: 6 additions & 6 deletions test/dt_arith.c
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ test_particular_fp_integer(void)
/*-------------------------------------------------------------------------
* Function: test_derived_flt
*
* Purpose: Tests user-define and query functions of floating-point types.
* Purpose: Tests user-defined and query functions of floating-point types.
*
* Return: Success: 0
*
Expand All @@ -903,7 +903,7 @@ test_derived_flt(void)
char str[256]; /*message string */
unsigned int i, j;

TESTING("user-define and query functions of floating-point types");
TESTING("user-defined and query functions of floating-point types");

/* Create File */
h5_fixname(FILENAME[0], H5P_DEFAULT, filename, sizeof filename);
Expand Down Expand Up @@ -1324,7 +1324,7 @@ test_derived_flt(void)
/*-------------------------------------------------------------------------
* Function: test_derived_integer
*
* Purpose: Tests user-define and query functions of integer types.
* Purpose: Tests user-defined and query functions of integer types.
*
* Return: Success: 0
*
Expand All @@ -1347,7 +1347,7 @@ test_derived_integer(void)
char str[256]; /*message string */
unsigned int i, j;

TESTING("user-define and query functions of integer types");
TESTING("user-defined and query functions of integer types");

/* Create File */
h5_fixname(FILENAME[1], H5P_DEFAULT, filename, sizeof filename);
Expand Down Expand Up @@ -5990,11 +5990,11 @@ main(void)
/* Test H5Tcompiler_conv() for querying hard conversion. */
nerrors += (unsigned long)test_hard_query();

/* Test user-define, query functions and software conversion
/* Test user-defined, query functions and software conversion
* for user-defined floating-point types */
nerrors += (unsigned long)test_derived_flt();

/* Test user-define, query functions and software conversion
/* Test user-defined, query functions and software conversion
* for user-defined integer types */
nerrors += (unsigned long)test_derived_integer();

Expand Down

0 comments on commit aae5e79

Please sign in to comment.