Skip to content

Commit 6cef106

Browse files
authored
Merge pull request #53 from BerkeleyLab/chores
Chores
2 parents c435adb + af7fe1d commit 6cef106

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Users construct tests by
2222
* The corresponding function name and
2323
- Produces an array of `test_result_t` objects.
2424

25-
2625
Julienne empowers users to customize the diagnostic information that prints when tests fail.
2726
For this purpose, Julienne's `string_t` constructors convert various data types, kinds, and ranks to character data.
2827
Julienne also provides `string_t` operators supporting concatenation and delimited lists such as comma-separated value lists.
@@ -40,7 +39,7 @@ Supported Compilers
4039

4140
Compiler | Version(s) Tested | Known Issues
4241
-----------------|--------------------------|-------------
43-
GCC `gfortran` | 14.1.0, 14.2.0_1, 15.0.1 | items 1-3 below
42+
GCC `gfortran` | 13.1.0, 14.2.0_1, 15.0.1 | items 1-3 below
4443
Intel `ifx` | 2025.1 | item 4 below
4544
LLVM `flang-new` | 19, 20 | none
4645
NAG `nagfor` | 7.2 Build 7227 | none

src/julienne/julienne_vector_test_description_s.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module function construct_from_strings(descriptions, vector_diagnosis_function)
4343
test_results = test_result_t(self%descriptions_)
4444
else
4545
associate(diagnoses => self%vector_diagnosis_function_())
46-
#ifdef ASSERTIONS
46+
#if defined(ASSERTIONS)
4747
associate(num_descriptions => size(self%descriptions_), num_results => size(diagnoses))
4848
call_assert_diagnose(num_descriptions == num_results, "description/result size match", intrinsic_array_t([num_descriptions, num_results]))
4949
end associate

0 commit comments

Comments
 (0)