Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions test/driver.F90
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
! Copyright (c) 2024-2025, The Regents of the University of California and Sourcery Institute
! Terms of use are as specified in LICENSE.txt

#include "language-support.F90"

program test_suite_driver
!! Julienne test-suite driver

#if ! defined(__GNUC__) || (GCC_VERSION >= 140300)

! Test infrastructure:
use julienne_m, only : test_fixture_t, test_harness_t

Expand Down Expand Up @@ -42,6 +38,4 @@ program test_suite_driver
call test_harness%report_results
end associate

#endif

end program
2 changes: 1 addition & 1 deletion test/idiomatic_assertion_failure_test.F90
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ program idiomatic_assertion_failure_test
associate(command_line => command_line_t(), me => 1)
#endif
if (.not. command_line%argument_present([character(len=len("--help"))::"--help","-h"])) then
#ifdef TEST_INTENTIONAL_FAILURE
#if TEST_INTENTIONAL_FAILURE && ASSERTIONS
if (me==1) print '(a)', new_line('') // 'Test the intentional failure of an idiomatic assertion: ' // new_line('')
call_julienne_assert(1 .equalsExpected. 2)
#else
Expand Down
84 changes: 0 additions & 84 deletions test/legacy-driver.F90

This file was deleted.

49 changes: 0 additions & 49 deletions test/legacy-unit_test_failure_test.F90

This file was deleted.

5 changes: 0 additions & 5 deletions test/unit_test_failure_test.F90
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#include "language-support.F90"

program unit_test_failure_test
!! Conditionally execute test_test_t%report

#if (! defined(__GNUC__)) || (GCC_VERSION >= 140300)

use julienne_m, only : command_line_t, test_fixture_t, test_harness_t
use test_test_m, only : test_test_t
implicit none
Expand Down Expand Up @@ -33,6 +29,5 @@ program unit_test_failure_test
end if
end associate
# endif
#endif

end program