From 0b0f566c666878da857af60c6847f8b655985fe1 Mon Sep 17 00:00:00 2001 From: Damian Rouson Date: Sun, 27 Oct 2024 08:50:06 -0700 Subject: [PATCH] fix(test_t): prevent subject wrapping in report This commit replaces list-directed printing of the test_t subject with formatted printing to work around flang's relatively short wrapping length for list-directed printing. --- src/julienne/julienne_test_s.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/julienne/julienne_test_s.F90 b/src/julienne/julienne_test_s.F90 index 76f91e3f..a66bca0e 100644 --- a/src/julienne/julienne_test_s.F90 +++ b/src/julienne/julienne_test_s.F90 @@ -35,7 +35,7 @@ end if end if first_report - print *, new_line('a'), test%subject() + print '(*(a))', new_line('a'), test%subject() end if